From 367cd73ee2fe325807c7a4fc18b51461aaa966a5 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 19 Jun 2017 15:30:55 -0700 Subject: [PATCH] Allow unsigned, short, etc to be their own types --- corpus/declarations.txt | 6 +- grammar.js | 3 +- src/grammar.json | 15 +- src/parser.c | 57495 +++++++++++++++++++------------------- 4 files changed, 28812 insertions(+), 28707 deletions(-) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index f3b5c11..5e0b5de 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -70,6 +70,8 @@ Primitive-typed variable declarations unsigned short int a; long int b, c = 5, d; float d, e; +unsigned f; +short g, h; --- @@ -80,7 +82,9 @@ float d, e; (identifier) (init_declarator (identifier) (number_literal)) (identifier)) - (declaration (identifier) (identifier) (identifier))) + (declaration (identifier) (identifier) (identifier)) + (declaration (sized_type_specifier) (identifier)) + (declaration (sized_type_specifier) (identifier) (identifier))) ============================================ Variable storage classes diff --git a/grammar.js b/grammar.js index 29ef1cb..d62e388 100644 --- a/grammar.js +++ b/grammar.js @@ -33,6 +33,7 @@ module.exports = grammar({ [$.sizeof_expression, $.cast_expression], [$._type_specifier, $._expression, $.macro_type_specifier], [$._type_specifier, $.macro_type_specifier], + [$.sized_type_specifier], ], rules: { @@ -240,7 +241,7 @@ module.exports = grammar({ 'long', 'short' )), - $.identifier + optional($.identifier) ), enum_specifier: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 1a6bcef..6a5b875 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -956,8 +956,16 @@ } }, { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -3157,6 +3165,9 @@ [ "_type_specifier", "macro_type_specifier" + ], + [ + "sized_type_specifier" ] ], "externals": [] diff --git a/src/parser.c b/src/parser.c index b4d87cf..39f5bb0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -4,7 +4,7 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #define LANGUAGE_VERSION 2 -#define STATE_COUNT 1088 +#define STATE_COUNT 1089 #define SYMBOL_COUNT 172 #define TOKEN_COUNT 90 #define EXTERNAL_TOKEN_COUNT 0 @@ -4075,8 +4075,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\r') || (lookahead == ' ')) SKIP(270); + if (lookahead == '(') + ADVANCE(49); + if (lookahead == ')') + ADVANCE(50); + if (lookahead == '*') + ADVANCE(266); + if (lookahead == ',') + ADVANCE(56); if (lookahead == '/') ADVANCE(238); + if (lookahead == ':') + ADVANCE(79); + if (lookahead == ';') + ADVANCE(80); if (('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || @@ -4084,6 +4096,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 't') || ('v' <= lookahead && lookahead <= 'z')) ADVANCE(92); + if (lookahead == '[') + ADVANCE(93); if (lookahead == 'l') ADVANCE(153); if (lookahead == 's') @@ -5349,12 +5363,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(318); if (lookahead == '(') ADVANCE(49); + if (lookahead == ')') + ADVANCE(50); if (lookahead == '*') ADVANCE(266); if (lookahead == '/') ADVANCE(238); + if (('A' <= lookahead && lookahead <= 'Z') || + (lookahead == '_') || + ('a' <= lookahead && lookahead <= 'k') || + ('m' <= lookahead && lookahead <= 'r') || + (lookahead == 't') || + ('v' <= lookahead && lookahead <= 'z')) + ADVANCE(92); if (lookahead == '[') ADVANCE(93); + if (lookahead == 'l') + ADVANCE(153); + if (lookahead == 's') + ADVANCE(271); + if (lookahead == 'u') + ADVANCE(272); END_STATE(); case 319: if ((lookahead == '\t') || @@ -5364,8 +5393,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(319); if (lookahead == '(') ADVANCE(49); - if (lookahead == ')') - ADVANCE(50); + if (lookahead == '*') + ADVANCE(266); if (lookahead == '/') ADVANCE(238); if (lookahead == '[') @@ -5381,8 +5410,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(49); if (lookahead == ')') ADVANCE(50); - if (lookahead == ',') - ADVANCE(56); if (lookahead == '/') ADVANCE(238); if (lookahead == '[') @@ -5394,6 +5421,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\r') || (lookahead == ' ')) SKIP(321); + if (lookahead == '(') + ADVANCE(49); + if (lookahead == ')') + ADVANCE(50); + if (lookahead == ',') + ADVANCE(56); + if (lookahead == '/') + ADVANCE(238); + if (lookahead == '[') + ADVANCE(93); + END_STATE(); + case 322: + if ((lookahead == '\t') || + (lookahead == '\n') || + (lookahead == '\r') || + (lookahead == ' ')) + SKIP(322); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -5438,12 +5482,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 == ')') @@ -5461,12 +5505,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 == '/') @@ -5502,12 +5546,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 == '*') @@ -5521,12 +5565,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 == ')') @@ -5542,12 +5586,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(49); if (lookahead == ')') @@ -5555,12 +5599,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(238); END_STATE(); - case 327: + case 328: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(327); + SKIP(328); if (lookahead == '/') ADVANCE(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5590,12 +5634,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 328: + case 329: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(328); + SKIP(329); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -5619,12 +5663,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(230); END_STATE(); - case 329: + case 330: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(329); + SKIP(330); if (lookahead == '(') ADVANCE(49); if (lookahead == '*') @@ -5640,12 +5684,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); END_STATE(); - case 330: + case 331: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(330); + SKIP(331); if (lookahead == '(') ADVANCE(49); if (lookahead == ',') @@ -5659,12 +5703,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 331: + case 332: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(331); + SKIP(332); if (lookahead == ',') ADVANCE(56); if (lookahead == '/') @@ -5674,12 +5718,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(80); END_STATE(); - case 332: + case 333: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(332); + SKIP(333); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -5715,12 +5759,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 333: + case 334: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(333); + SKIP(334); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -5775,12 +5819,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 334: + case 335: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(334); + SKIP(335); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -5818,12 +5862,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(56); if (lookahead == '/') @@ -5831,12 +5875,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 336: + case 337: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(336); + SKIP(337); if (lookahead == '.') ADVANCE(304); if (lookahead == '/') @@ -5846,12 +5890,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 337: + case 338: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(337); + SKIP(338); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -5892,12 +5936,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 338: + case 339: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(338); + SKIP(339); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -5954,12 +5998,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 339: + case 340: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(339); + SKIP(340); if (lookahead == ',') ADVANCE(56); if (lookahead == '/') @@ -5969,12 +6013,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(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5984,12 +6028,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 341: + case 342: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(341); + SKIP(342); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6046,12 +6090,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 == '\"') @@ -6106,12 +6150,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 == '\"') @@ -6166,12 +6210,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(2); if (lookahead == '\"') @@ -6226,12 +6270,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(2); if (lookahead == '\"') @@ -6288,12 +6332,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 346: + case 347: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(346); + SKIP(347); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -6363,12 +6407,12 @@ 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(264); if (lookahead == '\"') @@ -6438,14 +6482,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 348: + case 349: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(348); + SKIP(349); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -6517,34 +6561,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 349: + case 350: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(349); + SKIP(350); if (lookahead == '(') ADVANCE(49); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 350: + case 351: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(350); + SKIP(351); if (lookahead == '/') ADVANCE(238); if (lookahead == ':') ADVANCE(79); END_STATE(); - case 351: + case 352: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(351); + SKIP(352); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -6581,7 +6625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(101); if (lookahead == 'c') - ADVANCE(352); + ADVANCE(353); if (lookahead == 'd') ADVANCE(119); if (lookahead == 'f') @@ -6589,11 +6633,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(142); if (lookahead == 'i') - ADVANCE(355); - if (lookahead == 'r') ADVANCE(356); + if (lookahead == 'r') + ADVANCE(357); if (lookahead == 's') - ADVANCE(358); + ADVANCE(359); if (lookahead == 'w') ADVANCE(225); if (lookahead == '{') @@ -6601,7 +6645,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 352: + case 353: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6612,9 +6656,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(107); if (lookahead == 'o') - ADVANCE(353); + ADVANCE(354); END_STATE(); - case 353: + case 354: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6623,9 +6667,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'z')) ADVANCE(92); if (lookahead == 'n') - ADVANCE(354); + ADVANCE(355); END_STATE(); - case 354: + case 355: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6636,7 +6680,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(114); END_STATE(); - case 355: + case 356: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6647,7 +6691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(147); END_STATE(); - case 356: + case 357: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6656,9 +6700,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('f' <= lookahead && lookahead <= 'z')) ADVANCE(92); if (lookahead == 'e') - ADVANCE(357); + ADVANCE(358); END_STATE(); - case 357: + case 358: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6669,7 +6713,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(171); END_STATE(); - case 358: + case 359: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -6683,12 +6727,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(194); END_STATE(); - case 359: + case 360: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(359); + SKIP(360); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -6723,23 +6767,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 360: + case 361: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(360); + SKIP(361); if (lookahead == '/') ADVANCE(238); if (lookahead == ';') ADVANCE(80); END_STATE(); - case 361: + case 362: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(361); + SKIP(362); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -6785,12 +6829,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 362: + case 363: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(362); + SKIP(363); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -6828,12 +6872,12 @@ 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(264); if (lookahead == '\"') @@ -6891,12 +6935,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 364: + case 365: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(364); + SKIP(365); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -6936,70 +6980,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 365: + case 366: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(365); + SKIP(366); if (lookahead == '/') ADVANCE(238); if (lookahead == 'w') - ADVANCE(366); - END_STATE(); - case 366: - if (lookahead == 'h') ADVANCE(367); END_STATE(); case 367: - if (lookahead == 'i') + if (lookahead == 'h') ADVANCE(368); END_STATE(); case 368: - if (lookahead == 'l') + if (lookahead == 'i') ADVANCE(369); END_STATE(); case 369: - if (lookahead == 'e') + if (lookahead == 'l') ADVANCE(370); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'e') + ADVANCE(371); END_STATE(); case 371: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + 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(366); - END_STATE(); - case 372: - if (lookahead == 'l') ADVANCE(373); + if (lookahead == 'w') + ADVANCE(367); 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(8); if (lookahead == '/') @@ -7035,14 +7079,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(217); END_STATE(); - case 377: + case 378: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(377); + SKIP(378); if (lookahead == '#') - ADVANCE(378); + ADVANCE(379); if (lookahead == '/') ADVANCE(238); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7076,7 +7120,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(217); END_STATE(); - case 378: + case 379: if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'c') || ('f' <= lookahead && lookahead <= 'h') || @@ -7085,11 +7129,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(10); if (lookahead == 'e') - ADVANCE(379); + ADVANCE(380); if (lookahead == 'i') ADVANCE(24); END_STATE(); - case 379: + case 380: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -7100,47 +7144,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(20); END_STATE(); - case 380: + case 381: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(380); + SKIP(381); if (lookahead == '#') - ADVANCE(381); + ADVANCE(382); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 381: - if (lookahead == 'e') - ADVANCE(382); - END_STATE(); case 382: - if (lookahead == 'n') + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 383: - if (lookahead == 'd') + if (lookahead == 'n') ADVANCE(384); END_STATE(); case 384: - if (lookahead == 'i') + if (lookahead == 'd') ADVANCE(385); END_STATE(); case 385: - if (lookahead == 'f') + if (lookahead == 'i') ADVANCE(386); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_POUNDendif); + if (lookahead == 'f') + ADVANCE(387); END_STATE(); case 387: + ACCEPT_TOKEN(anon_sym_POUNDendif); + END_STATE(); + case 388: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(388); - if (lookahead == '\n') ADVANCE(389); + if (lookahead == '\n') + ADVANCE(390); if (lookahead == '(') ADVANCE(49); if (lookahead == '/') @@ -7157,12 +7201,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 388: + case 389: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(388); + ADVANCE(389); if (lookahead == '(') ADVANCE(49); if (lookahead == '/') @@ -7179,15 +7223,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 389: + case 390: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 390: + case 391: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(390); + SKIP(391); if (lookahead == ')') ADVANCE(50); if (lookahead == '.') @@ -7199,23 +7243,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); END_STATE(); - case 391: + case 392: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(391); + SKIP(392); if (lookahead == '\n') - ADVANCE(389); + ADVANCE(390); if (lookahead == '/') ADVANCE(238); END_STATE(); - case 392: + case 393: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(393); + ADVANCE(394); if (lookahead == '\n') - ADVANCE(389); + ADVANCE(390); if (lookahead == '/') ADVANCE(255); if (lookahead == '\\') @@ -7229,12 +7273,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 393: + case 394: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(393); + ADVANCE(394); if (lookahead == '/') ADVANCE(255); if (lookahead == '\\') @@ -7248,12 +7292,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 394: + case 395: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(394); + SKIP(395); if (lookahead == '.') ADVANCE(292); if (lookahead == '/') @@ -7263,12 +7307,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); END_STATE(); - case 395: + case 396: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(395); + SKIP(396); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -7332,12 +7376,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 396: + case 397: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(396); + SKIP(397); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -7401,53 +7445,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 397: + case 398: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(398); + ADVANCE(399); if (lookahead == '\n') - ADVANCE(389); + ADVANCE(390); if (lookahead == '!') - ADVANCE(399); - if (lookahead == '\"') ADVANCE(400); + if (lookahead == '\"') + ADVANCE(401); if (lookahead == '%') - ADVANCE(403); - if (lookahead == '&') ADVANCE(404); - if (lookahead == '\'') + if (lookahead == '&') ADVANCE(405); + if (lookahead == '\'') + ADVANCE(406); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(410); - if (lookahead == '+') ADVANCE(411); + if (lookahead == '+') + ADVANCE(412); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(412); + ADVANCE(413); if (lookahead == '.') ADVANCE(304); if (lookahead == '/') - ADVANCE(413); - if (lookahead == '0') ADVANCE(414); + if (lookahead == '0') + ADVANCE(415); if ('1' <= lookahead && lookahead <= '9') - ADVANCE(417); + ADVANCE(418); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(422); + ADVANCE(423); if (lookahead == '=') - ADVANCE(424); - if (lookahead == '>') ADVANCE(425); + if (lookahead == '>') + ADVANCE(426); if (lookahead == '?') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7457,7 +7501,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == '[') ADVANCE(93); if (lookahead == '\\') @@ -7465,41 +7509,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(428); - if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'a') + ADVANCE(430); if (lookahead == 'b') - ADVANCE(433); + ADVANCE(434); if (lookahead == 'c') - ADVANCE(438); + ADVANCE(439); if (lookahead == 'd') - ADVANCE(451); + ADVANCE(452); if (lookahead == 'e') - ADVANCE(459); + ADVANCE(460); if (lookahead == 'f') - ADVANCE(471); + ADVANCE(472); if (lookahead == 'g') - ADVANCE(474); + ADVANCE(475); if (lookahead == 'i') - ADVANCE(478); + ADVANCE(479); if (lookahead == 'l') - ADVANCE(485); + ADVANCE(486); if (lookahead == 'r') - ADVANCE(489); + ADVANCE(490); if (lookahead == 's') - ADVANCE(507); + ADVANCE(508); if (lookahead == 't') - ADVANCE(531); + ADVANCE(532); if (lookahead == 'u') - ADVANCE(538); + ADVANCE(539); if (lookahead == 'v') - ADVANCE(549); + ADVANCE(550); if (lookahead == 'w') - ADVANCE(557); + ADVANCE(558); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(562); + ADVANCE(563); if (lookahead == '}') ADVANCE(234); if (lookahead == '~') @@ -7514,52 +7558,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '~'))) ADVANCE(261); END_STATE(); - case 398: + case 399: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(398); - if (lookahead == '!') ADVANCE(399); - if (lookahead == '\"') + if (lookahead == '!') ADVANCE(400); + if (lookahead == '\"') + ADVANCE(401); if (lookahead == '%') - ADVANCE(403); - if (lookahead == '&') ADVANCE(404); - if (lookahead == '\'') + if (lookahead == '&') ADVANCE(405); + if (lookahead == '\'') + ADVANCE(406); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(410); - if (lookahead == '+') ADVANCE(411); + if (lookahead == '+') + ADVANCE(412); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(412); + ADVANCE(413); if (lookahead == '.') ADVANCE(304); if (lookahead == '/') - ADVANCE(413); - if (lookahead == '0') ADVANCE(414); + if (lookahead == '0') + ADVANCE(415); if ('1' <= lookahead && lookahead <= '9') - ADVANCE(417); + ADVANCE(418); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(422); + ADVANCE(423); if (lookahead == '=') - ADVANCE(424); - if (lookahead == '>') ADVANCE(425); + if (lookahead == '>') + ADVANCE(426); if (lookahead == '?') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7569,7 +7613,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == '[') ADVANCE(93); if (lookahead == '\\') @@ -7577,41 +7621,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(428); - if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'a') + ADVANCE(430); if (lookahead == 'b') - ADVANCE(433); + ADVANCE(434); if (lookahead == 'c') - ADVANCE(438); + ADVANCE(439); if (lookahead == 'd') - ADVANCE(451); + ADVANCE(452); if (lookahead == 'e') - ADVANCE(459); + ADVANCE(460); if (lookahead == 'f') - ADVANCE(471); + ADVANCE(472); if (lookahead == 'g') - ADVANCE(474); + ADVANCE(475); if (lookahead == 'i') - ADVANCE(478); + ADVANCE(479); if (lookahead == 'l') - ADVANCE(485); + ADVANCE(486); if (lookahead == 'r') - ADVANCE(489); + ADVANCE(490); if (lookahead == 's') - ADVANCE(507); + ADVANCE(508); if (lookahead == 't') - ADVANCE(531); + ADVANCE(532); if (lookahead == 'u') - ADVANCE(538); + ADVANCE(539); if (lookahead == 'v') - ADVANCE(549); + ADVANCE(550); if (lookahead == 'w') - ADVANCE(557); + ADVANCE(558); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(562); + ADVANCE(563); if (lookahead == '}') ADVANCE(234); if (lookahead == '~') @@ -7626,94 +7670,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '~'))) ADVANCE(261); END_STATE(); - case 399: + case 400: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(3); END_STATE(); - case 400: + case 401: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(4); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(401); + ADVANCE(402); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(400); + ADVANCE(401); END_STATE(); - case 401: + case 402: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(400); + ADVANCE(401); if (lookahead == '\"') - ADVANCE(402); + ADVANCE(403); if (lookahead == '\\') - ADVANCE(401); + ADVANCE(402); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(400); + ADVANCE(401); END_STATE(); - case 402: + case 403: ACCEPT_TOKEN(sym_string_literal); if (lookahead == '\n') ADVANCE(4); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(401); + ADVANCE(402); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(400); + ADVANCE(401); END_STATE(); - case 403: + case 404: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(40); END_STATE(); - case 404: + case 405: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(42); if (lookahead == '=') ADVANCE(43); END_STATE(); - case 405: + case 406: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(48); if (lookahead == '\'') ADVANCE(261); if (lookahead == '\\') - ADVANCE(406); + ADVANCE(407); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\'') || (lookahead == '\\'))) - ADVANCE(407); + ADVANCE(408); END_STATE(); - case 406: + case 407: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(407); - if (lookahead == '\'') ADVANCE(408); - if (lookahead == '\\') + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') + ADVANCE(410); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\'') || (lookahead == '\\'))) - ADVANCE(407); + ADVANCE(408); END_STATE(); - case 407: + case 408: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\'') ADVANCE(47); @@ -7725,12 +7769,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 408: + case 409: ACCEPT_TOKEN(sym_char_literal); if (lookahead == '\'') ADVANCE(47); END_STATE(); - case 409: + case 410: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(261); @@ -7744,19 +7788,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 410: + case 411: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') ADVANCE(52); END_STATE(); - case 411: + case 412: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(54); if (lookahead == '=') ADVANCE(55); END_STATE(); - case 412: + case 413: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(58); @@ -7765,7 +7809,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(60); END_STATE(); - case 413: + case 414: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(256); @@ -7774,23 +7818,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(69); END_STATE(); - case 414: + case 415: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(415); + ADVANCE(416); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(417); - if (lookahead == 'b') ADVANCE(418); + if (lookahead == 'b') + ADVANCE(419); if (lookahead == 'u') ADVANCE(74); if (lookahead == 'x') - ADVANCE(420); + ADVANCE(421); END_STATE(); - case 415: + case 416: ACCEPT_TOKEN(sym_preproc_arg); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(416); + ADVANCE(417); if (lookahead == '\\') ADVANCE(260); if (!((lookahead == 0) || @@ -7799,25 +7843,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 416: + case 417: ACCEPT_TOKEN(sym_number_literal); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(416); + ADVANCE(417); END_STATE(); - case 417: + case 418: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(415); + ADVANCE(416); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(417); + ADVANCE(418); if (lookahead == 'u') ADVANCE(74); END_STATE(); - case 418: + case 419: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '0') || (lookahead == '1')) - ADVANCE(419); + ADVANCE(420); if (lookahead == '\\') ADVANCE(260); if (!((lookahead == 0) || @@ -7827,308 +7871,308 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 419: + case 420: ACCEPT_TOKEN(sym_number_literal); if ((lookahead == '0') || (lookahead == '1')) - ADVANCE(419); + ADVANCE(420); END_STATE(); - case 420: + case 421: ACCEPT_TOKEN(sym_preproc_arg); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || (']' <= lookahead && lookahead <= 'f')) - ADVANCE(421); + ADVANCE(422); if (lookahead == '\\') - ADVANCE(421); + ADVANCE(422); if (!((lookahead == 0) || (lookahead == '\n') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'f'))) ADVANCE(261); END_STATE(); - case 421: + case 422: ACCEPT_TOKEN(sym_number_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || (']' <= lookahead && lookahead <= 'f')) - ADVANCE(421); + ADVANCE(422); if (lookahead == '\\') - ADVANCE(421); + ADVANCE(422); END_STATE(); - case 422: + case 423: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') - ADVANCE(423); + ADVANCE(424); if (lookahead == '=') ADVANCE(84); END_STATE(); - case 423: + case 424: ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(83); END_STATE(); - case 424: + case 425: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(86); END_STATE(); - case 425: + case 426: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(88); if (lookahead == '>') - ADVANCE(426); + ADVANCE(427); END_STATE(); - case 426: + case 427: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '=') ADVANCE(90); END_STATE(); - case 427: + case 428: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 428: + case 429: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') ADVANCE(96); END_STATE(); - case 429: + case 430: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'u') - ADVANCE(430); + ADVANCE(431); END_STATE(); - case 430: + case 431: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(431); + ADVANCE(432); END_STATE(); - case 431: + case 432: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(432); + ADVANCE(433); END_STATE(); - case 432: + case 433: ACCEPT_TOKEN(anon_sym_auto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 433: + case 434: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'r') - ADVANCE(434); + ADVANCE(435); END_STATE(); - case 434: + case 435: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(435); + ADVANCE(436); END_STATE(); - case 435: + case 436: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'a') - 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 <= 'j') || ('l' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'k') - ADVANCE(437); + ADVANCE(438); END_STATE(); - case 437: + case 438: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 438: + case 439: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'a') - ADVANCE(439); + ADVANCE(440); if (lookahead == 'o') - ADVANCE(442); + ADVANCE(443); END_STATE(); - case 439: + case 440: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 's') - ADVANCE(440); + ADVANCE(441); END_STATE(); - case 440: + case 441: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(441); + ADVANCE(442); END_STATE(); - case 441: + case 442: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 442: + case 443: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(443); + ADVANCE(444); END_STATE(); - case 443: + case 444: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 's') - ADVANCE(444); + ADVANCE(445); if (lookahead == 't') - ADVANCE(446); + ADVANCE(447); END_STATE(); - case 444: + case 445: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(445); + ADVANCE(446); END_STATE(); - case 445: + case 446: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 446: + case 447: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(447); + ADVANCE(448); END_STATE(); - case 447: + case 448: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(448); + ADVANCE(449); END_STATE(); - case 448: + case 449: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'u') - 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 <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(450); + ADVANCE(451); END_STATE(); - case 450: + case 451: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 451: + case 452: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8136,83 +8180,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(452); + ADVANCE(453); if (lookahead == 'o') - ADVANCE(458); + ADVANCE(459); END_STATE(); - case 452: + case 453: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'f') - ADVANCE(453); + ADVANCE(454); END_STATE(); - case 453: + case 454: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'a') - ADVANCE(454); + ADVANCE(455); END_STATE(); - case 454: + case 455: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'u') - ADVANCE(455); + ADVANCE(456); END_STATE(); - case 455: + case 456: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'l') - 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 <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(457); + ADVANCE(458); END_STATE(); - case 457: + case 458: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 458: + case 459: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 459: + case 460: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8222,198 +8266,198 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'w') || (lookahead == 'y') || (lookahead == 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'l') - ADVANCE(460); + ADVANCE(461); if (lookahead == 'n') - ADVANCE(463); + ADVANCE(464); if (lookahead == 'x') - ADVANCE(466); + ADVANCE(467); END_STATE(); - case 460: + case 461: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 's') - ADVANCE(461); + ADVANCE(462); END_STATE(); - case 461: + case 462: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(462); + ADVANCE(463); END_STATE(); - case 462: + case 463: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 463: + case 464: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'u') - ADVANCE(464); + ADVANCE(465); END_STATE(); - case 464: + case 465: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'l') || ('n' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'm') - ADVANCE(465); + ADVANCE(466); END_STATE(); - case 465: + case 466: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 466: + case 467: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(467); + ADVANCE(468); END_STATE(); - case 467: + case 468: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(468); + ADVANCE(469); END_STATE(); - case 468: + case 469: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'r') - 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 <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(470); + ADVANCE(471); END_STATE(); - case 470: + case 471: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 471: + case 472: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(472); + ADVANCE(473); END_STATE(); - case 472: + case 473: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'r') - ADVANCE(473); + ADVANCE(474); END_STATE(); - case 473: + case 474: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 474: + case 475: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(475); + ADVANCE(476); END_STATE(); - case 475: + case 476: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(476); + ADVANCE(477); 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(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(477); + ADVANCE(478); END_STATE(); - case 477: + case 478: ACCEPT_TOKEN(anon_sym_goto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 478: + case 479: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8421,125 +8465,125 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'f') - ADVANCE(479); - if (lookahead == 'n') ADVANCE(480); + if (lookahead == 'n') + ADVANCE(481); END_STATE(); - case 479: + case 480: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 480: + case 481: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'l') - ADVANCE(481); + ADVANCE(482); END_STATE(); - case 481: + case 482: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(482); + ADVANCE(483); END_STATE(); - case 482: + case 483: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - 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 <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(484); + ADVANCE(485); END_STATE(); - case 484: + case 485: ACCEPT_TOKEN(sym_function_specifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 485: + case 486: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(486); + ADVANCE(487); END_STATE(); - case 486: + case 487: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(487); + ADVANCE(488); END_STATE(); - case 487: + case 488: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'g') - ADVANCE(488); + ADVANCE(489); END_STATE(); - case 488: + case 489: ACCEPT_TOKEN(anon_sym_long); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 489: + case 490: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(490); + ADVANCE(491); END_STATE(); - case 490: + case 491: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8547,111 +8591,111 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'r') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'g') - ADVANCE(491); + ADVANCE(492); if (lookahead == 's') - ADVANCE(497); + ADVANCE(498); if (lookahead == 't') - ADVANCE(503); + ADVANCE(504); END_STATE(); - case 491: + case 492: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(492); + ADVANCE(493); END_STATE(); - case 492: + case 493: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 's') - ADVANCE(493); + ADVANCE(494); END_STATE(); - case 493: + case 494: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - 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 <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - 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 <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'r') - ADVANCE(496); + ADVANCE(497); END_STATE(); - case 496: + case 497: ACCEPT_TOKEN(anon_sym_register); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 497: + case 498: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(498); + ADVANCE(499); END_STATE(); - case 498: + case 499: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'r') - ADVANCE(499); + ADVANCE(500); END_STATE(); - case 499: + case 500: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(500); + ADVANCE(501); END_STATE(); - case 500: + case 501: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8659,71 +8703,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'c') - 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 <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(502); + ADVANCE(503); END_STATE(); - case 502: + case 503: ACCEPT_TOKEN(anon_sym_restrict); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 503: + case 504: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'u') - ADVANCE(504); + ADVANCE(505); END_STATE(); - case 504: + case 505: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'r') - ADVANCE(505); + ADVANCE(506); END_STATE(); - case 505: + case 506: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(506); + ADVANCE(507); END_STATE(); - case 506: + case 507: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 507: + case 508: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8733,144 +8777,144 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'u') || (lookahead == 'v') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'h') - ADVANCE(508); + ADVANCE(509); if (lookahead == 'i') - ADVANCE(512); + ADVANCE(513); if (lookahead == 't') - ADVANCE(517); + ADVANCE(518); if (lookahead == 'w') - ADVANCE(526); + ADVANCE(527); END_STATE(); - case 508: + case 509: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(509); + ADVANCE(510); END_STATE(); - case 509: + case 510: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'r') - ADVANCE(510); + ADVANCE(511); END_STATE(); - case 510: + case 511: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(511); + ADVANCE(512); END_STATE(); - case 511: + case 512: ACCEPT_TOKEN(anon_sym_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 512: + case 513: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'y')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'z') - ADVANCE(513); + ADVANCE(514); END_STATE(); - case 513: + case 514: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(514); + ADVANCE(515); END_STATE(); - case 514: + case 515: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - 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 <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'f') - ADVANCE(516); + ADVANCE(517); END_STATE(); - case 516: + case 517: ACCEPT_TOKEN(anon_sym_sizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 517: + case 518: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'a') - ADVANCE(518); + ADVANCE(519); if (lookahead == 'r') - ADVANCE(522); + ADVANCE(523); END_STATE(); - case 518: + case 519: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(519); + ADVANCE(520); END_STATE(); - case 519: + case 520: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(520); + ADVANCE(521); END_STATE(); - case 520: + case 521: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8878,30 +8922,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'c') - ADVANCE(521); + ADVANCE(522); END_STATE(); - case 521: + case 522: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 522: + case 523: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'u') - ADVANCE(523); + ADVANCE(524); END_STATE(); - case 523: + case 524: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8909,52 +8953,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'c') - ADVANCE(524); + ADVANCE(525); END_STATE(); - case 524: + case 525: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(525); + ADVANCE(526); END_STATE(); - case 525: + case 526: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 526: + case 527: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(527); + ADVANCE(528); END_STATE(); - case 527: + case 528: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(528); + ADVANCE(529); END_STATE(); - case 528: + case 529: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8962,115 +9006,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'c') - 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 <= 'g') || ('i' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'h') - ADVANCE(530); + ADVANCE(531); END_STATE(); - case 530: + case 531: ACCEPT_TOKEN(anon_sym_switch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 531: + case 532: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'x') || (lookahead == 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'y') - ADVANCE(532); + ADVANCE(533); END_STATE(); - case 532: + case 533: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'p') - ADVANCE(533); + ADVANCE(534); END_STATE(); - case 533: + case 534: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - 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 <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'd') - 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(427); + ADVANCE(428); 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 <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'f') - ADVANCE(537); + ADVANCE(538); END_STATE(); - case 537: + case 538: ACCEPT_TOKEN(anon_sym_typedef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 538: + case 539: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(539); + ADVANCE(540); END_STATE(); - case 539: + case 540: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9078,256 +9122,256 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(540); + ADVANCE(541); if (lookahead == 's') - ADVANCE(543); + ADVANCE(544); END_STATE(); - case 540: + case 541: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(541); + ADVANCE(542); END_STATE(); - case 541: + case 542: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(542); + ADVANCE(543); END_STATE(); - case 542: + case 543: ACCEPT_TOKEN(anon_sym_union); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 543: + case 544: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(544); + ADVANCE(545); END_STATE(); - case 544: + case 545: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'g') - ADVANCE(545); + ADVANCE(546); END_STATE(); - case 545: + case 546: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - 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 <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - 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 <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'd') - ADVANCE(548); + ADVANCE(549); END_STATE(); - case 548: + case 549: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 549: + case 550: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(550); + ADVANCE(551); END_STATE(); - case 550: + case 551: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'l') - ADVANCE(551); + ADVANCE(552); END_STATE(); - case 551: + case 552: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'a') - 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 <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 't') - ADVANCE(553); + ADVANCE(554); END_STATE(); - case 553: + case 554: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - 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 <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'l') - 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 <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(556); + ADVANCE(557); END_STATE(); - case 556: + case 557: ACCEPT_TOKEN(anon_sym_volatile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 557: + case 558: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'h') - ADVANCE(558); + ADVANCE(559); END_STATE(); - case 558: + case 559: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'i') - ADVANCE(559); + ADVANCE(560); END_STATE(); - case 559: + case 560: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'l') - 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 <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(561); + ADVANCE(562); END_STATE(); - case 561: + case 562: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); END_STATE(); - case 562: + case 563: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '=') ADVANCE(232); if (lookahead == '|') ADVANCE(233); END_STATE(); - case 563: + case 564: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(563); + SKIP(564); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -9401,12 +9445,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 564: + case 565: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(564); + SKIP(565); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -9445,12 +9489,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 565: + case 566: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(565); + SKIP(566); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -9498,12 +9542,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 566: + case 567: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(566); + SKIP(567); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -9577,14 +9621,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 == '\"') @@ -9682,12 +9726,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(2); if (lookahead == '\"') @@ -9750,14 +9794,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 569: + case 570: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(569); + SKIP(570); if (lookahead == '!') ADVANCE(306); if (lookahead == '#') @@ -9835,47 +9879,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 570: + case 571: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(571); + ADVANCE(572); if (lookahead == '\n') - ADVANCE(389); + ADVANCE(390); if (lookahead == '!') - ADVANCE(572); - if (lookahead == '#') ADVANCE(573); + if (lookahead == '#') + ADVANCE(574); if (lookahead == '%') - ADVANCE(403); - if (lookahead == '&') ADVANCE(404); + if (lookahead == '&') + ADVANCE(405); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(410); - if (lookahead == '+') ADVANCE(411); + if (lookahead == '+') + ADVANCE(412); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(412); + ADVANCE(413); if (lookahead == '.') ADVANCE(304); if (lookahead == '/') - ADVANCE(413); + ADVANCE(414); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(422); + ADVANCE(423); if (lookahead == '=') - ADVANCE(424); - if (lookahead == '>') ADVANCE(425); + if (lookahead == '>') + ADVANCE(426); if (lookahead == '?') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || @@ -9887,7 +9931,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('w' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == '[') ADVANCE(93); if (lookahead == '\\') @@ -9895,31 +9939,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(428); - if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'a') + ADVANCE(430); if (lookahead == 'c') - ADVANCE(604); + ADVANCE(605); if (lookahead == 'e') - ADVANCE(607); - if (lookahead == 'i') ADVANCE(608); + if (lookahead == 'i') + ADVANCE(609); if (lookahead == 'l') - ADVANCE(485); + ADVANCE(486); if (lookahead == 'r') - ADVANCE(609); + ADVANCE(610); if (lookahead == 's') - ADVANCE(611); + ADVANCE(612); if (lookahead == 't') - ADVANCE(531); + ADVANCE(532); if (lookahead == 'u') - ADVANCE(538); + ADVANCE(539); if (lookahead == 'v') - ADVANCE(549); + ADVANCE(550); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(562); + ADVANCE(563); if (lookahead == '}') ADVANCE(234); if (!((lookahead == 0) || @@ -9937,46 +9981,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '}'))) ADVANCE(261); END_STATE(); - case 571: + case 572: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(571); - if (lookahead == '!') ADVANCE(572); - if (lookahead == '#') + if (lookahead == '!') ADVANCE(573); + if (lookahead == '#') + ADVANCE(574); if (lookahead == '%') - ADVANCE(403); - if (lookahead == '&') ADVANCE(404); + if (lookahead == '&') + ADVANCE(405); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(410); - if (lookahead == '+') ADVANCE(411); + if (lookahead == '+') + ADVANCE(412); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(412); + ADVANCE(413); if (lookahead == '.') ADVANCE(304); if (lookahead == '/') - ADVANCE(413); + ADVANCE(414); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(422); + ADVANCE(423); if (lookahead == '=') - ADVANCE(424); - if (lookahead == '>') ADVANCE(425); + if (lookahead == '>') + ADVANCE(426); if (lookahead == '?') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || @@ -9988,7 +10032,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('w' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == '[') ADVANCE(93); if (lookahead == '\\') @@ -9996,31 +10040,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(428); - if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'a') + ADVANCE(430); if (lookahead == 'c') - ADVANCE(604); + ADVANCE(605); if (lookahead == 'e') - ADVANCE(607); - if (lookahead == 'i') ADVANCE(608); + if (lookahead == 'i') + ADVANCE(609); if (lookahead == 'l') - ADVANCE(485); + ADVANCE(486); if (lookahead == 'r') - ADVANCE(609); + ADVANCE(610); if (lookahead == 's') - ADVANCE(611); + ADVANCE(612); if (lookahead == 't') - ADVANCE(531); + ADVANCE(532); if (lookahead == 'u') - ADVANCE(538); + ADVANCE(539); if (lookahead == 'v') - ADVANCE(549); + ADVANCE(550); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(562); + ADVANCE(563); if (lookahead == '}') ADVANCE(234); if (!((lookahead == 0) || @@ -10038,7 +10082,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '}'))) ADVANCE(261); END_STATE(); - case 572: + case 573: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '=') ADVANCE(3); @@ -10050,21 +10094,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(261); END_STATE(); - case 573: + case 574: ACCEPT_TOKEN(sym_preproc_arg); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'c') || ('f' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == '\\') ADVANCE(260); if (lookahead == 'd') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'e') - ADVANCE(581); + ADVANCE(582); if (lookahead == 'i') - ADVANCE(589); + ADVANCE(590); if (!((lookahead == 0) || (lookahead == '\n') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10072,78 +10116,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z'))) ADVANCE(261); END_STATE(); - case 574: + case 575: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); END_STATE(); - case 575: + case 576: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'e') - ADVANCE(576); + ADVANCE(577); END_STATE(); - case 576: + case 577: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'f') - ADVANCE(577); + ADVANCE(578); END_STATE(); - case 577: + case 578: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'i') - ADVANCE(578); + ADVANCE(579); END_STATE(); - case 578: + case 579: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'n') - ADVANCE(579); + ADVANCE(580); END_STATE(); - case 579: + case 580: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'e') - ADVANCE(580); + ADVANCE(581); END_STATE(); - case 580: + case 581: ACCEPT_TOKEN(anon_sym_POUNDdefine); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); END_STATE(); - case 581: + case 582: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10151,84 +10195,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'k') || (lookahead == 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'l') - ADVANCE(582); + ADVANCE(583); if (lookahead == 'n') - ADVANCE(585); + ADVANCE(586); END_STATE(); - case 582: + case 583: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 's') - ADVANCE(583); + ADVANCE(584); END_STATE(); - case 583: + case 584: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'e') - ADVANCE(584); + ADVANCE(585); END_STATE(); - case 584: + case 585: ACCEPT_TOKEN(anon_sym_POUNDelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); END_STATE(); - case 585: + case 586: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'd') - ADVANCE(586); + ADVANCE(587); END_STATE(); - case 586: + case 587: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'i') - ADVANCE(587); + ADVANCE(588); END_STATE(); - case 587: + case 588: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'f') - ADVANCE(588); + ADVANCE(589); END_STATE(); - case 588: + case 589: ACCEPT_TOKEN(anon_sym_POUNDendif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); END_STATE(); - case 589: + case 590: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10236,13 +10280,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'f') - ADVANCE(590); + ADVANCE(591); if (lookahead == 'n') - ADVANCE(598); + ADVANCE(599); END_STATE(); - case 590: + case 591: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10250,84 +10294,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'd') - ADVANCE(591); + ADVANCE(592); if (lookahead == 'n') - ADVANCE(594); + ADVANCE(595); END_STATE(); - case 591: + case 592: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'e') - ADVANCE(592); + ADVANCE(593); END_STATE(); - case 592: + case 593: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'f') - ADVANCE(593); + ADVANCE(594); END_STATE(); - case 593: + case 594: ACCEPT_TOKEN(anon_sym_POUNDifdef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); END_STATE(); - case 594: + case 595: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'd') - ADVANCE(595); + ADVANCE(596); END_STATE(); - case 595: + case 596: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'e') - ADVANCE(596); + ADVANCE(597); END_STATE(); - case 596: + case 597: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'f') - ADVANCE(597); + ADVANCE(598); END_STATE(); - case 597: + case 598: ACCEPT_TOKEN(anon_sym_POUNDifndef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); END_STATE(); - case 598: + case 599: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10335,96 +10379,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'c') - ADVANCE(599); + ADVANCE(600); END_STATE(); - case 599: + case 600: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'l') - ADVANCE(600); + ADVANCE(601); END_STATE(); - case 600: + case 601: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'u') - ADVANCE(601); + ADVANCE(602); END_STATE(); - case 601: + case 602: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'd') - ADVANCE(602); + ADVANCE(603); END_STATE(); - case 602: + case 603: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); if (lookahead == 'e') - ADVANCE(603); + ADVANCE(604); END_STATE(); - case 603: + case 604: ACCEPT_TOKEN(anon_sym_POUNDinclude); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(574); + ADVANCE(575); END_STATE(); - case 604: + case 605: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'o') - ADVANCE(605); + ADVANCE(606); END_STATE(); - case 605: + case 606: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(606); + ADVANCE(607); END_STATE(); - case 606: + case 607: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 's') - ADVANCE(444); + ADVANCE(445); END_STATE(); - case 607: + case 608: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10433,35 +10477,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'w') || (lookahead == 'y') || (lookahead == 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(463); + ADVANCE(464); if (lookahead == 'x') - ADVANCE(466); + ADVANCE(467); END_STATE(); - case 608: + case 609: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(480); + ADVANCE(481); END_STATE(); - case 609: + case 610: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'e') - ADVANCE(610); + ADVANCE(611); END_STATE(); - case 610: + case 611: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10469,13 +10513,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'g') - ADVANCE(491); + ADVANCE(492); if (lookahead == 's') - ADVANCE(497); + ADVANCE(498); END_STATE(); - case 611: + case 612: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10483,18 +10527,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(427); + ADVANCE(428); if (lookahead == 'h') - ADVANCE(508); + ADVANCE(509); if (lookahead == 't') - ADVANCE(517); + ADVANCE(518); END_STATE(); - case 612: + case 613: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(612); + SKIP(613); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10555,7 +10599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(101); if (lookahead == 'c') - ADVANCE(352); + ADVANCE(353); if (lookahead == 'd') ADVANCE(119); if (lookahead == 'f') @@ -10563,11 +10607,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(142); if (lookahead == 'i') - ADVANCE(355); - if (lookahead == 'r') ADVANCE(356); + if (lookahead == 'r') + ADVANCE(357); if (lookahead == 's') - ADVANCE(358); + ADVANCE(359); if (lookahead == 'w') ADVANCE(225); if (lookahead == '{') @@ -10579,12 +10623,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 613: + case 614: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(613); + SKIP(614); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -10630,12 +10674,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 614: + case 615: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(614); + SKIP(615); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -10655,12 +10699,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 615: + case 616: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(615); + SKIP(616); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10725,12 +10769,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 616: + case 617: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(616); + SKIP(617); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10826,12 +10870,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 617: + case 618: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(617); + SKIP(618); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -10903,12 +10947,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 618: + case 619: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(618); + SKIP(619); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -10948,12 +10992,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 619: + case 620: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(619); + SKIP(620); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11012,12 +11056,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 620: + case 621: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(620); + SKIP(621); if (lookahead == '(') ADVANCE(49); if (lookahead == ',') @@ -11033,12 +11077,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 621: + case 622: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(621); + SKIP(622); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -11058,12 +11102,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(93); END_STATE(); - case 622: + case 623: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(622); + SKIP(623); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -11081,12 +11125,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(230); END_STATE(); - case 623: + case 624: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(623); + SKIP(624); if (lookahead == ')') ADVANCE(50); if (lookahead == '.') @@ -11110,12 +11154,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(206); END_STATE(); - case 624: + case 625: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(624); + SKIP(625); if (lookahead == '(') ADVANCE(49); if (lookahead == '*') @@ -11137,12 +11181,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 625: + case 626: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(625); + SKIP(626); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -11152,14 +11196,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(238); END_STATE(); - case 626: + case 627: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(626); + SKIP(627); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -11239,12 +11283,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 627: + case 628: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(627); + SKIP(628); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11284,12 +11328,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 628: + case 629: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(628); + SKIP(629); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11348,12 +11392,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 629: + case 630: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(629); + SKIP(630); if (lookahead == ',') ADVANCE(56); if (lookahead == '/') @@ -11363,12 +11407,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 630: + case 631: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(630); + SKIP(631); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -11420,12 +11464,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 631: + case 632: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(631); + SKIP(632); if (lookahead == '!') ADVANCE(264); if (lookahead == '\"') @@ -11462,12 +11506,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 632: + case 633: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(632); + SKIP(633); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11517,12 +11561,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 633: + case 634: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(633); + SKIP(634); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11570,12 +11614,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 634: + case 635: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(634); + SKIP(635); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11615,12 +11659,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 635: + case 636: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(635); + SKIP(636); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11679,12 +11723,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(235); END_STATE(); - case 636: + case 637: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(636); + SKIP(637); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11728,45 +11772,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(234); END_STATE(); - case 637: + case 638: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(638); + ADVANCE(639); if (lookahead == '\n') - ADVANCE(389); + ADVANCE(390); if (lookahead == '!') - ADVANCE(572); + ADVANCE(573); if (lookahead == '%') - ADVANCE(403); - if (lookahead == '&') ADVANCE(404); + if (lookahead == '&') + ADVANCE(405); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(410); - if (lookahead == '+') ADVANCE(411); + if (lookahead == '+') + ADVANCE(412); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(412); + ADVANCE(413); if (lookahead == '.') ADVANCE(304); if (lookahead == '/') - ADVANCE(413); + ADVANCE(414); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(422); + ADVANCE(423); if (lookahead == '=') - ADVANCE(424); - if (lookahead == '>') ADVANCE(425); + if (lookahead == '>') + ADVANCE(426); if (lookahead == '?') ADVANCE(91); if (lookahead == '[') @@ -11776,11 +11820,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(428); + ADVANCE(429); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(562); + ADVANCE(563); if (lookahead == '}') ADVANCE(234); if (!((lookahead == 0) || @@ -11797,44 +11841,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('{' <= lookahead && lookahead <= '}'))) ADVANCE(261); END_STATE(); - case 638: + case 639: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(638); + ADVANCE(639); if (lookahead == '!') - ADVANCE(572); + ADVANCE(573); if (lookahead == '%') - ADVANCE(403); - if (lookahead == '&') ADVANCE(404); + if (lookahead == '&') + ADVANCE(405); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(50); if (lookahead == '*') - ADVANCE(410); - if (lookahead == '+') ADVANCE(411); + if (lookahead == '+') + ADVANCE(412); if (lookahead == ',') ADVANCE(56); if (lookahead == '-') - ADVANCE(412); + ADVANCE(413); if (lookahead == '.') ADVANCE(304); if (lookahead == '/') - ADVANCE(413); + ADVANCE(414); if (lookahead == ':') ADVANCE(79); if (lookahead == ';') ADVANCE(80); if (lookahead == '<') - ADVANCE(422); + ADVANCE(423); if (lookahead == '=') - ADVANCE(424); - if (lookahead == '>') ADVANCE(425); + if (lookahead == '>') + ADVANCE(426); if (lookahead == '?') ADVANCE(91); if (lookahead == '[') @@ -11844,11 +11888,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(94); if (lookahead == '^') - ADVANCE(428); + ADVANCE(429); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') - ADVANCE(562); + ADVANCE(563); if (lookahead == '}') ADVANCE(234); if (!((lookahead == 0) || @@ -11865,12 +11909,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('{' <= lookahead && lookahead <= '}'))) ADVANCE(261); END_STATE(); - case 639: + case 640: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(639); + SKIP(640); if (lookahead == '!') ADVANCE(306); if (lookahead == '%') @@ -11914,12 +11958,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(231); END_STATE(); - case 640: + case 641: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(640); + SKIP(641); if (lookahead == '(') ADVANCE(49); if (lookahead == ')') @@ -12145,106 +12189,106 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [201] = {.lex_state = 313}, [202] = {.lex_state = 316}, [203] = {.lex_state = 317}, - [204] = {.lex_state = 314}, - [205] = {.lex_state = 315}, - [206] = {.lex_state = 318}, - [207] = {.lex_state = 315}, - [208] = {.lex_state = 293}, - [209] = {.lex_state = 319}, + [204] = {.lex_state = 318}, + [205] = {.lex_state = 314}, + [206] = {.lex_state = 315}, + [207] = {.lex_state = 319}, + [208] = {.lex_state = 315}, + [209] = {.lex_state = 293}, [210] = {.lex_state = 320}, - [211] = {.lex_state = 291}, - [212] = {.lex_state = 293}, - [213] = {.lex_state = 321}, - [214] = {.lex_state = 320}, - [215] = {.lex_state = 310}, - [216] = {.lex_state = 293}, - [217] = {.lex_state = 302}, - [218] = {.lex_state = 320}, - [219] = {.lex_state = 310}, - [220] = {.lex_state = 320}, - [221] = {.lex_state = 310}, - [222] = {.lex_state = 320}, + [211] = {.lex_state = 321}, + [212] = {.lex_state = 291}, + [213] = {.lex_state = 293}, + [214] = {.lex_state = 322}, + [215] = {.lex_state = 321}, + [216] = {.lex_state = 310}, + [217] = {.lex_state = 293}, + [218] = {.lex_state = 302}, + [219] = {.lex_state = 321}, + [220] = {.lex_state = 310}, + [221] = {.lex_state = 321}, + [222] = {.lex_state = 310}, [223] = {.lex_state = 321}, - [224] = {.lex_state = 312}, - [225] = {.lex_state = 320}, - [226] = {.lex_state = 278}, - [227] = {.lex_state = 322}, - [228] = {.lex_state = 316}, - [229] = {.lex_state = 323}, - [230] = {.lex_state = 312}, - [231] = {.lex_state = 323}, - [232] = {.lex_state = 312}, + [224] = {.lex_state = 322}, + [225] = {.lex_state = 312}, + [226] = {.lex_state = 321}, + [227] = {.lex_state = 278}, + [228] = {.lex_state = 323}, + [229] = {.lex_state = 316}, + [230] = {.lex_state = 324}, + [231] = {.lex_state = 312}, + [232] = {.lex_state = 324}, [233] = {.lex_state = 312}, - [234] = {.lex_state = 320}, - [235] = {.lex_state = 324}, - [236] = {.lex_state = 322}, - [237] = {.lex_state = 320}, - [238] = {.lex_state = 320}, + [234] = {.lex_state = 312}, + [235] = {.lex_state = 321}, + [236] = {.lex_state = 325}, + [237] = {.lex_state = 323}, + [238] = {.lex_state = 321}, [239] = {.lex_state = 321}, - [240] = {.lex_state = 285}, - [241] = {.lex_state = 310}, - [242] = {.lex_state = 293}, - [243] = {.lex_state = 302}, - [244] = {.lex_state = 285}, - [245] = {.lex_state = 310}, - [246] = {.lex_state = 285}, - [247] = {.lex_state = 310}, - [248] = {.lex_state = 285}, - [249] = {.lex_state = 321}, - [250] = {.lex_state = 285}, - [251] = {.lex_state = 316}, - [252] = {.lex_state = 285}, - [253] = {.lex_state = 321}, - [254] = {.lex_state = 320}, - [255] = {.lex_state = 310}, - [256] = {.lex_state = 293}, - [257] = {.lex_state = 302}, - [258] = {.lex_state = 321}, - [259] = {.lex_state = 285}, - [260] = {.lex_state = 320}, - [261] = {.lex_state = 325}, - [262] = {.lex_state = 319}, - [263] = {.lex_state = 319}, + [240] = {.lex_state = 322}, + [241] = {.lex_state = 285}, + [242] = {.lex_state = 310}, + [243] = {.lex_state = 293}, + [244] = {.lex_state = 302}, + [245] = {.lex_state = 285}, + [246] = {.lex_state = 310}, + [247] = {.lex_state = 285}, + [248] = {.lex_state = 310}, + [249] = {.lex_state = 285}, + [250] = {.lex_state = 322}, + [251] = {.lex_state = 285}, + [252] = {.lex_state = 316}, + [253] = {.lex_state = 285}, + [254] = {.lex_state = 322}, + [255] = {.lex_state = 321}, + [256] = {.lex_state = 310}, + [257] = {.lex_state = 293}, + [258] = {.lex_state = 302}, + [259] = {.lex_state = 322}, + [260] = {.lex_state = 285}, + [261] = {.lex_state = 321}, + [262] = {.lex_state = 326}, + [263] = {.lex_state = 320}, [264] = {.lex_state = 320}, - [265] = {.lex_state = 285}, - [266] = {.lex_state = 322}, - [267] = {.lex_state = 320}, - [268] = {.lex_state = 320}, - [269] = {.lex_state = 278}, - [270] = {.lex_state = 326}, - [271] = {.lex_state = 316}, - [272] = {.lex_state = 275}, - [273] = {.lex_state = 327}, + [265] = {.lex_state = 321}, + [266] = {.lex_state = 285}, + [267] = {.lex_state = 323}, + [268] = {.lex_state = 321}, + [269] = {.lex_state = 321}, + [270] = {.lex_state = 278}, + [271] = {.lex_state = 327}, + [272] = {.lex_state = 316}, + [273] = {.lex_state = 275}, [274] = {.lex_state = 328}, - [275] = {.lex_state = 327}, - [276] = {.lex_state = 275}, - [277] = {.lex_state = 329}, - [278] = {.lex_state = 327}, - [279] = {.lex_state = 317}, - [280] = {.lex_state = 327}, - [281] = {.lex_state = 275}, - [282] = {.lex_state = 327}, - [283] = {.lex_state = 329}, - [284] = {.lex_state = 327}, - [285] = {.lex_state = 283}, - [286] = {.lex_state = 302}, - [287] = {.lex_state = 330}, - [288] = {.lex_state = 283}, - [289] = {.lex_state = 327}, - [290] = {.lex_state = 302}, - [291] = {.lex_state = 331}, - [292] = {.lex_state = 283}, - [293] = {.lex_state = 327}, - [294] = {.lex_state = 302}, - [295] = {.lex_state = 300}, - [296] = {.lex_state = 302}, + [275] = {.lex_state = 329}, + [276] = {.lex_state = 328}, + [277] = {.lex_state = 275}, + [278] = {.lex_state = 330}, + [279] = {.lex_state = 328}, + [280] = {.lex_state = 317}, + [281] = {.lex_state = 328}, + [282] = {.lex_state = 275}, + [283] = {.lex_state = 328}, + [284] = {.lex_state = 330}, + [285] = {.lex_state = 328}, + [286] = {.lex_state = 283}, + [287] = {.lex_state = 302}, + [288] = {.lex_state = 331}, + [289] = {.lex_state = 283}, + [290] = {.lex_state = 328}, + [291] = {.lex_state = 302}, + [292] = {.lex_state = 332}, + [293] = {.lex_state = 283}, + [294] = {.lex_state = 328}, + [295] = {.lex_state = 302}, + [296] = {.lex_state = 300}, [297] = {.lex_state = 302}, [298] = {.lex_state = 302}, [299] = {.lex_state = 302}, [300] = {.lex_state = 302}, - [301] = {.lex_state = 332}, - [302] = {.lex_state = 327}, - [303] = {.lex_state = 302}, + [301] = {.lex_state = 302}, + [302] = {.lex_state = 333}, + [303] = {.lex_state = 328}, [304] = {.lex_state = 302}, [305] = {.lex_state = 302}, [306] = {.lex_state = 302}, @@ -12256,43 +12300,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [312] = {.lex_state = 302}, [313] = {.lex_state = 302}, [314] = {.lex_state = 302}, - [315] = {.lex_state = 332}, - [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 = 309}, - [326] = {.lex_state = 302}, - [327] = {.lex_state = 332}, - [328] = {.lex_state = 300}, - [329] = {.lex_state = 332}, - [330] = {.lex_state = 316}, - [331] = {.lex_state = 333}, - [332] = {.lex_state = 305}, + [315] = {.lex_state = 302}, + [316] = {.lex_state = 333}, + [317] = {.lex_state = 333}, + [318] = {.lex_state = 333}, + [319] = {.lex_state = 333}, + [320] = {.lex_state = 333}, + [321] = {.lex_state = 333}, + [322] = {.lex_state = 333}, + [323] = {.lex_state = 333}, + [324] = {.lex_state = 333}, + [325] = {.lex_state = 333}, + [326] = {.lex_state = 309}, + [327] = {.lex_state = 302}, + [328] = {.lex_state = 333}, + [329] = {.lex_state = 300}, + [330] = {.lex_state = 333}, + [331] = {.lex_state = 316}, + [332] = {.lex_state = 334}, [333] = {.lex_state = 305}, - [334] = {.lex_state = 300}, - [335] = {.lex_state = 302}, + [334] = {.lex_state = 305}, + [335] = {.lex_state = 300}, [336] = {.lex_state = 302}, [337] = {.lex_state = 302}, [338] = {.lex_state = 302}, [339] = {.lex_state = 302}, [340] = {.lex_state = 302}, - [341] = {.lex_state = 252}, - [342] = {.lex_state = 334}, + [341] = {.lex_state = 302}, + [342] = {.lex_state = 252}, [343] = {.lex_state = 335}, - [344] = {.lex_state = 335}, + [344] = {.lex_state = 336}, [345] = {.lex_state = 336}, - [346] = {.lex_state = 336}, - [347] = {.lex_state = 298}, - [348] = {.lex_state = 336}, - [349] = {.lex_state = 334}, + [346] = {.lex_state = 337}, + [347] = {.lex_state = 337}, + [348] = {.lex_state = 298}, + [349] = {.lex_state = 337}, [350] = {.lex_state = 335}, - [351] = {.lex_state = 302}, + [351] = {.lex_state = 336}, [352] = {.lex_state = 302}, [353] = {.lex_state = 302}, [354] = {.lex_state = 302}, @@ -12304,33 +12348,33 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [360] = {.lex_state = 302}, [361] = {.lex_state = 302}, [362] = {.lex_state = 302}, - [363] = {.lex_state = 334}, - [364] = {.lex_state = 334}, - [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 = 309}, - [374] = {.lex_state = 302}, - [375] = {.lex_state = 334}, - [376] = {.lex_state = 337}, - [377] = {.lex_state = 305}, + [363] = {.lex_state = 302}, + [364] = {.lex_state = 335}, + [365] = {.lex_state = 335}, + [366] = {.lex_state = 335}, + [367] = {.lex_state = 335}, + [368] = {.lex_state = 335}, + [369] = {.lex_state = 335}, + [370] = {.lex_state = 335}, + [371] = {.lex_state = 335}, + [372] = {.lex_state = 335}, + [373] = {.lex_state = 335}, + [374] = {.lex_state = 309}, + [375] = {.lex_state = 302}, + [376] = {.lex_state = 335}, + [377] = {.lex_state = 338}, [378] = {.lex_state = 305}, - [379] = {.lex_state = 336}, - [380] = {.lex_state = 298}, - [381] = {.lex_state = 334}, + [379] = {.lex_state = 305}, + [380] = {.lex_state = 337}, + [381] = {.lex_state = 298}, [382] = {.lex_state = 335}, [383] = {.lex_state = 336}, - [384] = {.lex_state = 300}, - [385] = {.lex_state = 334}, - [386] = {.lex_state = 316}, - [387] = {.lex_state = 338}, - [388] = {.lex_state = 305}, - [389] = {.lex_state = 302}, + [384] = {.lex_state = 337}, + [385] = {.lex_state = 300}, + [386] = {.lex_state = 335}, + [387] = {.lex_state = 316}, + [388] = {.lex_state = 339}, + [389] = {.lex_state = 305}, [390] = {.lex_state = 302}, [391] = {.lex_state = 302}, [392] = {.lex_state = 302}, @@ -12342,7 +12386,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [398] = {.lex_state = 302}, [399] = {.lex_state = 302}, [400] = {.lex_state = 302}, - [401] = {.lex_state = 313}, + [401] = {.lex_state = 302}, [402] = {.lex_state = 313}, [403] = {.lex_state = 313}, [404] = {.lex_state = 313}, @@ -12352,361 +12396,361 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [408] = {.lex_state = 313}, [409] = {.lex_state = 313}, [410] = {.lex_state = 313}, - [411] = {.lex_state = 309}, - [412] = {.lex_state = 302}, - [413] = {.lex_state = 313}, - [414] = {.lex_state = 305}, + [411] = {.lex_state = 313}, + [412] = {.lex_state = 309}, + [413] = {.lex_state = 302}, + [414] = {.lex_state = 313}, [415] = {.lex_state = 305}, [416] = {.lex_state = 305}, [417] = {.lex_state = 305}, - [418] = {.lex_state = 310}, - [419] = {.lex_state = 336}, - [420] = {.lex_state = 316}, - [421] = {.lex_state = 298}, - [422] = {.lex_state = 316}, - [423] = {.lex_state = 298}, - [424] = {.lex_state = 330}, - [425] = {.lex_state = 332}, - [426] = {.lex_state = 327}, - [427] = {.lex_state = 330}, - [428] = {.lex_state = 332}, - [429] = {.lex_state = 283}, - [430] = {.lex_state = 327}, - [431] = {.lex_state = 302}, - [432] = {.lex_state = 330}, + [418] = {.lex_state = 305}, + [419] = {.lex_state = 310}, + [420] = {.lex_state = 337}, + [421] = {.lex_state = 316}, + [422] = {.lex_state = 298}, + [423] = {.lex_state = 316}, + [424] = {.lex_state = 298}, + [425] = {.lex_state = 331}, + [426] = {.lex_state = 333}, + [427] = {.lex_state = 328}, + [428] = {.lex_state = 331}, + [429] = {.lex_state = 333}, + [430] = {.lex_state = 283}, + [431] = {.lex_state = 328}, + [432] = {.lex_state = 302}, [433] = {.lex_state = 331}, [434] = {.lex_state = 332}, - [435] = {.lex_state = 275}, - [436] = {.lex_state = 327}, - [437] = {.lex_state = 327}, + [435] = {.lex_state = 333}, + [436] = {.lex_state = 275}, + [437] = {.lex_state = 328}, [438] = {.lex_state = 328}, - [439] = {.lex_state = 327}, - [440] = {.lex_state = 275}, - [441] = {.lex_state = 327}, - [442] = {.lex_state = 275}, + [439] = {.lex_state = 329}, + [440] = {.lex_state = 328}, + [441] = {.lex_state = 275}, + [442] = {.lex_state = 328}, [443] = {.lex_state = 275}, - [444] = {.lex_state = 327}, - [445] = {.lex_state = 252}, - [446] = {.lex_state = 328}, - [447] = {.lex_state = 252}, - [448] = {.lex_state = 339}, - [449] = {.lex_state = 335}, - [450] = {.lex_state = 335}, - [451] = {.lex_state = 340}, - [452] = {.lex_state = 275}, + [444] = {.lex_state = 275}, + [445] = {.lex_state = 328}, + [446] = {.lex_state = 252}, + [447] = {.lex_state = 329}, + [448] = {.lex_state = 252}, + [449] = {.lex_state = 340}, + [450] = {.lex_state = 336}, + [451] = {.lex_state = 336}, + [452] = {.lex_state = 341}, [453] = {.lex_state = 275}, - [454] = {.lex_state = 335}, - [455] = {.lex_state = 302}, - [456] = {.lex_state = 334}, + [454] = {.lex_state = 275}, + [455] = {.lex_state = 336}, + [456] = {.lex_state = 302}, [457] = {.lex_state = 335}, - [458] = {.lex_state = 340}, - [459] = {.lex_state = 275}, - [460] = {.lex_state = 341}, - [461] = {.lex_state = 319}, - [462] = {.lex_state = 300}, - [463] = {.lex_state = 313}, - [464] = {.lex_state = 316}, - [465] = {.lex_state = 342}, - [466] = {.lex_state = 316}, - [467] = {.lex_state = 298}, - [468] = {.lex_state = 316}, - [469] = {.lex_state = 298}, - [470] = {.lex_state = 300}, - [471] = {.lex_state = 310}, - [472] = {.lex_state = 316}, - [473] = {.lex_state = 343}, - [474] = {.lex_state = 316}, - [475] = {.lex_state = 298}, - [476] = {.lex_state = 300}, - [477] = {.lex_state = 309}, - [478] = {.lex_state = 316}, - [479] = {.lex_state = 344}, - [480] = {.lex_state = 316}, - [481] = {.lex_state = 298}, - [482] = {.lex_state = 300}, - [483] = {.lex_state = 307}, - [484] = {.lex_state = 316}, - [485] = {.lex_state = 345}, - [486] = {.lex_state = 316}, - [487] = {.lex_state = 298}, - [488] = {.lex_state = 290}, - [489] = {.lex_state = 288}, - [490] = {.lex_state = 346}, - [491] = {.lex_state = 277}, - [492] = {.lex_state = 347}, + [458] = {.lex_state = 336}, + [459] = {.lex_state = 341}, + [460] = {.lex_state = 275}, + [461] = {.lex_state = 342}, + [462] = {.lex_state = 320}, + [463] = {.lex_state = 300}, + [464] = {.lex_state = 313}, + [465] = {.lex_state = 316}, + [466] = {.lex_state = 343}, + [467] = {.lex_state = 316}, + [468] = {.lex_state = 298}, + [469] = {.lex_state = 316}, + [470] = {.lex_state = 298}, + [471] = {.lex_state = 300}, + [472] = {.lex_state = 310}, + [473] = {.lex_state = 316}, + [474] = {.lex_state = 344}, + [475] = {.lex_state = 316}, + [476] = {.lex_state = 298}, + [477] = {.lex_state = 300}, + [478] = {.lex_state = 309}, + [479] = {.lex_state = 316}, + [480] = {.lex_state = 345}, + [481] = {.lex_state = 316}, + [482] = {.lex_state = 298}, + [483] = {.lex_state = 300}, + [484] = {.lex_state = 307}, + [485] = {.lex_state = 316}, + [486] = {.lex_state = 346}, + [487] = {.lex_state = 316}, + [488] = {.lex_state = 298}, + [489] = {.lex_state = 290}, + [490] = {.lex_state = 288}, + [491] = {.lex_state = 347}, + [492] = {.lex_state = 277}, [493] = {.lex_state = 348}, [494] = {.lex_state = 349}, - [495] = {.lex_state = 349}, - [496] = {.lex_state = 302}, - [497] = {.lex_state = 350}, - [498] = {.lex_state = 349}, - [499] = {.lex_state = 351}, - [500] = {.lex_state = 349}, - [501] = {.lex_state = 359}, + [495] = {.lex_state = 350}, + [496] = {.lex_state = 350}, + [497] = {.lex_state = 302}, + [498] = {.lex_state = 351}, + [499] = {.lex_state = 350}, + [500] = {.lex_state = 352}, + [501] = {.lex_state = 350}, [502] = {.lex_state = 360}, - [503] = {.lex_state = 360}, - [504] = {.lex_state = 252}, - [505] = {.lex_state = 361}, - [506] = {.lex_state = 346}, - [507] = {.lex_state = 278}, - [508] = {.lex_state = 347}, - [509] = {.lex_state = 282}, - [510] = {.lex_state = 332}, - [511] = {.lex_state = 346}, - [512] = {.lex_state = 348}, - [513] = {.lex_state = 346}, + [503] = {.lex_state = 361}, + [504] = {.lex_state = 361}, + [505] = {.lex_state = 252}, + [506] = {.lex_state = 362}, + [507] = {.lex_state = 347}, + [508] = {.lex_state = 278}, + [509] = {.lex_state = 348}, + [510] = {.lex_state = 282}, + [511] = {.lex_state = 333}, + [512] = {.lex_state = 347}, + [513] = {.lex_state = 349}, [514] = {.lex_state = 347}, - [515] = {.lex_state = 290}, - [516] = {.lex_state = 282}, - [517] = {.lex_state = 284}, - [518] = {.lex_state = 290}, - [519] = {.lex_state = 288}, + [515] = {.lex_state = 348}, + [516] = {.lex_state = 290}, + [517] = {.lex_state = 282}, + [518] = {.lex_state = 284}, + [519] = {.lex_state = 290}, [520] = {.lex_state = 288}, - [521] = {.lex_state = 289}, - [522] = {.lex_state = 351}, - [523] = {.lex_state = 362}, - [524] = {.lex_state = 347}, - [525] = {.lex_state = 360}, - [526] = {.lex_state = 347}, - [527] = {.lex_state = 347}, - [528] = {.lex_state = 347}, - [529] = {.lex_state = 347}, - [530] = {.lex_state = 332}, - [531] = {.lex_state = 347}, - [532] = {.lex_state = 363}, - [533] = {.lex_state = 359}, - [534] = {.lex_state = 364}, - [535] = {.lex_state = 278}, - [536] = {.lex_state = 283}, - [537] = {.lex_state = 332}, - [538] = {.lex_state = 359}, - [539] = {.lex_state = 308}, - [540] = {.lex_state = 332}, - [541] = {.lex_state = 308}, - [542] = {.lex_state = 351}, - [543] = {.lex_state = 311}, - [544] = {.lex_state = 351}, - [545] = {.lex_state = 312}, - [546] = {.lex_state = 351}, - [547] = {.lex_state = 347}, - [548] = {.lex_state = 347}, - [549] = {.lex_state = 347}, - [550] = {.lex_state = 351}, - [551] = {.lex_state = 311}, - [552] = {.lex_state = 312}, - [553] = {.lex_state = 347}, - [554] = {.lex_state = 283}, - [555] = {.lex_state = 308}, - [556] = {.lex_state = 332}, - [557] = {.lex_state = 351}, - [558] = {.lex_state = 311}, - [559] = {.lex_state = 312}, - [560] = {.lex_state = 347}, - [561] = {.lex_state = 349}, - [562] = {.lex_state = 349}, - [563] = {.lex_state = 302}, - [564] = {.lex_state = 350}, - [565] = {.lex_state = 349}, - [566] = {.lex_state = 349}, - [567] = {.lex_state = 362}, - [568] = {.lex_state = 365}, - [569] = {.lex_state = 349}, - [570] = {.lex_state = 302}, - [571] = {.lex_state = 313}, - [572] = {.lex_state = 347}, - [573] = {.lex_state = 351}, - [574] = {.lex_state = 363}, - [575] = {.lex_state = 359}, - [576] = {.lex_state = 332}, - [577] = {.lex_state = 359}, - [578] = {.lex_state = 308}, - [579] = {.lex_state = 332}, - [580] = {.lex_state = 308}, - [581] = {.lex_state = 351}, - [582] = {.lex_state = 311}, - [583] = {.lex_state = 351}, - [584] = {.lex_state = 312}, - [585] = {.lex_state = 351}, - [586] = {.lex_state = 351}, - [587] = {.lex_state = 311}, - [588] = {.lex_state = 312}, - [589] = {.lex_state = 308}, - [590] = {.lex_state = 332}, - [591] = {.lex_state = 351}, - [592] = {.lex_state = 311}, - [593] = {.lex_state = 312}, - [594] = {.lex_state = 302}, - [595] = {.lex_state = 313}, - [596] = {.lex_state = 351}, - [597] = {.lex_state = 347}, - [598] = {.lex_state = 351}, - [599] = {.lex_state = 347}, - [600] = {.lex_state = 309}, - [601] = {.lex_state = 351}, - [602] = {.lex_state = 347}, - [603] = {.lex_state = 302}, - [604] = {.lex_state = 313}, - [605] = {.lex_state = 351}, - [606] = {.lex_state = 347}, - [607] = {.lex_state = 302}, - [608] = {.lex_state = 313}, - [609] = {.lex_state = 351}, - [610] = {.lex_state = 349}, - [611] = {.lex_state = 349}, - [612] = {.lex_state = 302}, - [613] = {.lex_state = 350}, - [614] = {.lex_state = 349}, - [615] = {.lex_state = 349}, - [616] = {.lex_state = 362}, - [617] = {.lex_state = 371}, - [618] = {.lex_state = 351}, - [619] = {.lex_state = 347}, - [620] = {.lex_state = 351}, - [621] = {.lex_state = 363}, - [622] = {.lex_state = 359}, - [623] = {.lex_state = 332}, - [624] = {.lex_state = 359}, - [625] = {.lex_state = 308}, - [626] = {.lex_state = 332}, - [627] = {.lex_state = 308}, - [628] = {.lex_state = 351}, - [629] = {.lex_state = 311}, - [630] = {.lex_state = 351}, - [631] = {.lex_state = 312}, - [632] = {.lex_state = 351}, - [633] = {.lex_state = 351}, - [634] = {.lex_state = 311}, - [635] = {.lex_state = 312}, - [636] = {.lex_state = 308}, - [637] = {.lex_state = 332}, - [638] = {.lex_state = 351}, - [639] = {.lex_state = 311}, - [640] = {.lex_state = 312}, - [641] = {.lex_state = 302}, - [642] = {.lex_state = 313}, - [643] = {.lex_state = 351}, - [644] = {.lex_state = 351}, - [645] = {.lex_state = 309}, - [646] = {.lex_state = 351}, - [647] = {.lex_state = 302}, - [648] = {.lex_state = 313}, - [649] = {.lex_state = 351}, - [650] = {.lex_state = 302}, - [651] = {.lex_state = 313}, - [652] = {.lex_state = 351}, - [653] = {.lex_state = 371}, - [654] = {.lex_state = 351}, - [655] = {.lex_state = 302}, - [656] = {.lex_state = 313}, - [657] = {.lex_state = 351}, - [658] = {.lex_state = 351}, - [659] = {.lex_state = 309}, - [660] = {.lex_state = 351}, - [661] = {.lex_state = 302}, - [662] = {.lex_state = 313}, - [663] = {.lex_state = 351}, - [664] = {.lex_state = 302}, - [665] = {.lex_state = 313}, - [666] = {.lex_state = 351}, - [667] = {.lex_state = 349}, - [668] = {.lex_state = 349}, - [669] = {.lex_state = 302}, - [670] = {.lex_state = 350}, - [671] = {.lex_state = 349}, - [672] = {.lex_state = 349}, - [673] = {.lex_state = 362}, - [674] = {.lex_state = 347}, - [675] = {.lex_state = 351}, - [676] = {.lex_state = 351}, - [677] = {.lex_state = 363}, - [678] = {.lex_state = 359}, - [679] = {.lex_state = 332}, - [680] = {.lex_state = 359}, - [681] = {.lex_state = 308}, - [682] = {.lex_state = 332}, - [683] = {.lex_state = 308}, - [684] = {.lex_state = 351}, - [685] = {.lex_state = 311}, - [686] = {.lex_state = 351}, - [687] = {.lex_state = 312}, - [688] = {.lex_state = 351}, - [689] = {.lex_state = 351}, - [690] = {.lex_state = 311}, - [691] = {.lex_state = 312}, - [692] = {.lex_state = 308}, - [693] = {.lex_state = 332}, - [694] = {.lex_state = 351}, - [695] = {.lex_state = 311}, - [696] = {.lex_state = 312}, - [697] = {.lex_state = 302}, - [698] = {.lex_state = 313}, - [699] = {.lex_state = 351}, - [700] = {.lex_state = 351}, - [701] = {.lex_state = 309}, - [702] = {.lex_state = 351}, - [703] = {.lex_state = 302}, - [704] = {.lex_state = 313}, - [705] = {.lex_state = 351}, - [706] = {.lex_state = 302}, - [707] = {.lex_state = 313}, - [708] = {.lex_state = 351}, - [709] = {.lex_state = 347}, - [710] = {.lex_state = 351}, - [711] = {.lex_state = 282}, - [712] = {.lex_state = 287}, - [713] = {.lex_state = 277}, + [521] = {.lex_state = 288}, + [522] = {.lex_state = 289}, + [523] = {.lex_state = 352}, + [524] = {.lex_state = 363}, + [525] = {.lex_state = 348}, + [526] = {.lex_state = 361}, + [527] = {.lex_state = 348}, + [528] = {.lex_state = 348}, + [529] = {.lex_state = 348}, + [530] = {.lex_state = 348}, + [531] = {.lex_state = 333}, + [532] = {.lex_state = 348}, + [533] = {.lex_state = 364}, + [534] = {.lex_state = 360}, + [535] = {.lex_state = 365}, + [536] = {.lex_state = 278}, + [537] = {.lex_state = 283}, + [538] = {.lex_state = 333}, + [539] = {.lex_state = 360}, + [540] = {.lex_state = 308}, + [541] = {.lex_state = 333}, + [542] = {.lex_state = 308}, + [543] = {.lex_state = 352}, + [544] = {.lex_state = 311}, + [545] = {.lex_state = 352}, + [546] = {.lex_state = 312}, + [547] = {.lex_state = 352}, + [548] = {.lex_state = 348}, + [549] = {.lex_state = 348}, + [550] = {.lex_state = 348}, + [551] = {.lex_state = 352}, + [552] = {.lex_state = 311}, + [553] = {.lex_state = 312}, + [554] = {.lex_state = 348}, + [555] = {.lex_state = 283}, + [556] = {.lex_state = 308}, + [557] = {.lex_state = 333}, + [558] = {.lex_state = 352}, + [559] = {.lex_state = 311}, + [560] = {.lex_state = 312}, + [561] = {.lex_state = 348}, + [562] = {.lex_state = 350}, + [563] = {.lex_state = 350}, + [564] = {.lex_state = 302}, + [565] = {.lex_state = 351}, + [566] = {.lex_state = 350}, + [567] = {.lex_state = 350}, + [568] = {.lex_state = 363}, + [569] = {.lex_state = 366}, + [570] = {.lex_state = 350}, + [571] = {.lex_state = 302}, + [572] = {.lex_state = 313}, + [573] = {.lex_state = 348}, + [574] = {.lex_state = 352}, + [575] = {.lex_state = 364}, + [576] = {.lex_state = 360}, + [577] = {.lex_state = 333}, + [578] = {.lex_state = 360}, + [579] = {.lex_state = 308}, + [580] = {.lex_state = 333}, + [581] = {.lex_state = 308}, + [582] = {.lex_state = 352}, + [583] = {.lex_state = 311}, + [584] = {.lex_state = 352}, + [585] = {.lex_state = 312}, + [586] = {.lex_state = 352}, + [587] = {.lex_state = 352}, + [588] = {.lex_state = 311}, + [589] = {.lex_state = 312}, + [590] = {.lex_state = 308}, + [591] = {.lex_state = 333}, + [592] = {.lex_state = 352}, + [593] = {.lex_state = 311}, + [594] = {.lex_state = 312}, + [595] = {.lex_state = 302}, + [596] = {.lex_state = 313}, + [597] = {.lex_state = 352}, + [598] = {.lex_state = 348}, + [599] = {.lex_state = 352}, + [600] = {.lex_state = 348}, + [601] = {.lex_state = 309}, + [602] = {.lex_state = 352}, + [603] = {.lex_state = 348}, + [604] = {.lex_state = 302}, + [605] = {.lex_state = 313}, + [606] = {.lex_state = 352}, + [607] = {.lex_state = 348}, + [608] = {.lex_state = 302}, + [609] = {.lex_state = 313}, + [610] = {.lex_state = 352}, + [611] = {.lex_state = 350}, + [612] = {.lex_state = 350}, + [613] = {.lex_state = 302}, + [614] = {.lex_state = 351}, + [615] = {.lex_state = 350}, + [616] = {.lex_state = 350}, + [617] = {.lex_state = 363}, + [618] = {.lex_state = 372}, + [619] = {.lex_state = 352}, + [620] = {.lex_state = 348}, + [621] = {.lex_state = 352}, + [622] = {.lex_state = 364}, + [623] = {.lex_state = 360}, + [624] = {.lex_state = 333}, + [625] = {.lex_state = 360}, + [626] = {.lex_state = 308}, + [627] = {.lex_state = 333}, + [628] = {.lex_state = 308}, + [629] = {.lex_state = 352}, + [630] = {.lex_state = 311}, + [631] = {.lex_state = 352}, + [632] = {.lex_state = 312}, + [633] = {.lex_state = 352}, + [634] = {.lex_state = 352}, + [635] = {.lex_state = 311}, + [636] = {.lex_state = 312}, + [637] = {.lex_state = 308}, + [638] = {.lex_state = 333}, + [639] = {.lex_state = 352}, + [640] = {.lex_state = 311}, + [641] = {.lex_state = 312}, + [642] = {.lex_state = 302}, + [643] = {.lex_state = 313}, + [644] = {.lex_state = 352}, + [645] = {.lex_state = 352}, + [646] = {.lex_state = 309}, + [647] = {.lex_state = 352}, + [648] = {.lex_state = 302}, + [649] = {.lex_state = 313}, + [650] = {.lex_state = 352}, + [651] = {.lex_state = 302}, + [652] = {.lex_state = 313}, + [653] = {.lex_state = 352}, + [654] = {.lex_state = 372}, + [655] = {.lex_state = 352}, + [656] = {.lex_state = 302}, + [657] = {.lex_state = 313}, + [658] = {.lex_state = 352}, + [659] = {.lex_state = 352}, + [660] = {.lex_state = 309}, + [661] = {.lex_state = 352}, + [662] = {.lex_state = 302}, + [663] = {.lex_state = 313}, + [664] = {.lex_state = 352}, + [665] = {.lex_state = 302}, + [666] = {.lex_state = 313}, + [667] = {.lex_state = 352}, + [668] = {.lex_state = 350}, + [669] = {.lex_state = 350}, + [670] = {.lex_state = 302}, + [671] = {.lex_state = 351}, + [672] = {.lex_state = 350}, + [673] = {.lex_state = 350}, + [674] = {.lex_state = 363}, + [675] = {.lex_state = 348}, + [676] = {.lex_state = 352}, + [677] = {.lex_state = 352}, + [678] = {.lex_state = 364}, + [679] = {.lex_state = 360}, + [680] = {.lex_state = 333}, + [681] = {.lex_state = 360}, + [682] = {.lex_state = 308}, + [683] = {.lex_state = 333}, + [684] = {.lex_state = 308}, + [685] = {.lex_state = 352}, + [686] = {.lex_state = 311}, + [687] = {.lex_state = 352}, + [688] = {.lex_state = 312}, + [689] = {.lex_state = 352}, + [690] = {.lex_state = 352}, + [691] = {.lex_state = 311}, + [692] = {.lex_state = 312}, + [693] = {.lex_state = 308}, + [694] = {.lex_state = 333}, + [695] = {.lex_state = 352}, + [696] = {.lex_state = 311}, + [697] = {.lex_state = 312}, + [698] = {.lex_state = 302}, + [699] = {.lex_state = 313}, + [700] = {.lex_state = 352}, + [701] = {.lex_state = 352}, + [702] = {.lex_state = 309}, + [703] = {.lex_state = 352}, + [704] = {.lex_state = 302}, + [705] = {.lex_state = 313}, + [706] = {.lex_state = 352}, + [707] = {.lex_state = 302}, + [708] = {.lex_state = 313}, + [709] = {.lex_state = 352}, + [710] = {.lex_state = 348}, + [711] = {.lex_state = 352}, + [712] = {.lex_state = 282}, + [713] = {.lex_state = 287}, [714] = {.lex_state = 277}, - [715] = {.lex_state = 376}, - [716] = {.lex_state = 277}, - [717] = {.lex_state = 377}, - [718] = {.lex_state = 376}, - [719] = {.lex_state = 380}, - [720] = {.lex_state = 278}, - [721] = {.lex_state = 283}, - [722] = {.lex_state = 376}, - [723] = {.lex_state = 277}, - [724] = {.lex_state = 376}, - [725] = {.lex_state = 380}, - [726] = {.lex_state = 277}, - [727] = {.lex_state = 283}, - [728] = {.lex_state = 377}, - [729] = {.lex_state = 387}, - [730] = {.lex_state = 277}, - [731] = {.lex_state = 390}, + [715] = {.lex_state = 277}, + [716] = {.lex_state = 377}, + [717] = {.lex_state = 277}, + [718] = {.lex_state = 378}, + [719] = {.lex_state = 377}, + [720] = {.lex_state = 381}, + [721] = {.lex_state = 278}, + [722] = {.lex_state = 283}, + [723] = {.lex_state = 377}, + [724] = {.lex_state = 277}, + [725] = {.lex_state = 377}, + [726] = {.lex_state = 381}, + [727] = {.lex_state = 277}, + [728] = {.lex_state = 283}, + [729] = {.lex_state = 378}, + [730] = {.lex_state = 388}, + [731] = {.lex_state = 277}, [732] = {.lex_state = 391}, [733] = {.lex_state = 392}, - [734] = {.lex_state = 277}, - [735] = {.lex_state = 391}, - [736] = {.lex_state = 277}, + [734] = {.lex_state = 393}, + [735] = {.lex_state = 277}, + [736] = {.lex_state = 392}, [737] = {.lex_state = 277}, - [738] = {.lex_state = 312}, - [739] = {.lex_state = 392}, - [740] = {.lex_state = 394}, - [741] = {.lex_state = 392}, - [742] = {.lex_state = 312}, - [743] = {.lex_state = 394}, - [744] = {.lex_state = 392}, - [745] = {.lex_state = 312}, + [738] = {.lex_state = 277}, + [739] = {.lex_state = 312}, + [740] = {.lex_state = 393}, + [741] = {.lex_state = 395}, + [742] = {.lex_state = 393}, + [743] = {.lex_state = 312}, + [744] = {.lex_state = 395}, + [745] = {.lex_state = 393}, [746] = {.lex_state = 312}, - [747] = {.lex_state = 277}, - [748] = {.lex_state = 395}, - [749] = {.lex_state = 312}, - [750] = {.lex_state = 396}, + [747] = {.lex_state = 312}, + [748] = {.lex_state = 277}, + [749] = {.lex_state = 396}, + [750] = {.lex_state = 312}, [751] = {.lex_state = 397}, - [752] = {.lex_state = 277}, - [753] = {.lex_state = 563}, + [752] = {.lex_state = 398}, + [753] = {.lex_state = 277}, [754] = {.lex_state = 564}, - [755] = {.lex_state = 293}, - [756] = {.lex_state = 263}, - [757] = {.lex_state = 565}, - [758] = {.lex_state = 298}, - [759] = {.lex_state = 566}, + [755] = {.lex_state = 565}, + [756] = {.lex_state = 293}, + [757] = {.lex_state = 263}, + [758] = {.lex_state = 566}, + [759] = {.lex_state = 298}, [760] = {.lex_state = 567}, - [761] = {.lex_state = 262}, - [762] = {.lex_state = 270}, - [763] = {.lex_state = 351}, - [764] = {.lex_state = 349}, - [765] = {.lex_state = 302}, + [761] = {.lex_state = 568}, + [762] = {.lex_state = 262}, + [763] = {.lex_state = 270}, + [764] = {.lex_state = 352}, + [765] = {.lex_state = 350}, [766] = {.lex_state = 302}, [767] = {.lex_state = 302}, [768] = {.lex_state = 302}, @@ -12718,87 +12762,87 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [774] = {.lex_state = 302}, [775] = {.lex_state = 302}, [776] = {.lex_state = 302}, - [777] = {.lex_state = 568}, - [778] = {.lex_state = 302}, - [779] = {.lex_state = 252}, - [780] = {.lex_state = 569}, + [777] = {.lex_state = 302}, + [778] = {.lex_state = 569}, + [779] = {.lex_state = 302}, + [780] = {.lex_state = 252}, [781] = {.lex_state = 570}, - [782] = {.lex_state = 277}, - [783] = {.lex_state = 380}, - [784] = {.lex_state = 289}, - [785] = {.lex_state = 278}, - [786] = {.lex_state = 285}, - [787] = {.lex_state = 320}, - [788] = {.lex_state = 288}, - [789] = {.lex_state = 348}, - [790] = {.lex_state = 263}, - [791] = {.lex_state = 275}, - [792] = {.lex_state = 335}, - [793] = {.lex_state = 327}, - [794] = {.lex_state = 335}, - [795] = {.lex_state = 316}, - [796] = {.lex_state = 312}, - [797] = {.lex_state = 347}, - [798] = {.lex_state = 305}, - [799] = {.lex_state = 316}, - [800] = {.lex_state = 305}, - [801] = {.lex_state = 336}, - [802] = {.lex_state = 284}, - [803] = {.lex_state = 376}, - [804] = {.lex_state = 288}, - [805] = {.lex_state = 314}, - [806] = {.lex_state = 327}, - [807] = {.lex_state = 331}, - [808] = {.lex_state = 312}, - [809] = {.lex_state = 336}, - [810] = {.lex_state = 298}, - [811] = {.lex_state = 334}, + [782] = {.lex_state = 571}, + [783] = {.lex_state = 277}, + [784] = {.lex_state = 381}, + [785] = {.lex_state = 289}, + [786] = {.lex_state = 278}, + [787] = {.lex_state = 285}, + [788] = {.lex_state = 321}, + [789] = {.lex_state = 288}, + [790] = {.lex_state = 349}, + [791] = {.lex_state = 263}, + [792] = {.lex_state = 275}, + [793] = {.lex_state = 336}, + [794] = {.lex_state = 328}, + [795] = {.lex_state = 336}, + [796] = {.lex_state = 316}, + [797] = {.lex_state = 312}, + [798] = {.lex_state = 348}, + [799] = {.lex_state = 305}, + [800] = {.lex_state = 316}, + [801] = {.lex_state = 305}, + [802] = {.lex_state = 337}, + [803] = {.lex_state = 284}, + [804] = {.lex_state = 377}, + [805] = {.lex_state = 288}, + [806] = {.lex_state = 314}, + [807] = {.lex_state = 328}, + [808] = {.lex_state = 332}, + [809] = {.lex_state = 312}, + [810] = {.lex_state = 337}, + [811] = {.lex_state = 298}, [812] = {.lex_state = 335}, - [813] = {.lex_state = 612}, - [814] = {.lex_state = 347}, - [815] = {.lex_state = 327}, - [816] = {.lex_state = 302}, - [817] = {.lex_state = 332}, - [818] = {.lex_state = 327}, - [819] = {.lex_state = 275}, - [820] = {.lex_state = 302}, - [821] = {.lex_state = 285}, - [822] = {.lex_state = 613}, + [813] = {.lex_state = 336}, + [814] = {.lex_state = 613}, + [815] = {.lex_state = 348}, + [816] = {.lex_state = 328}, + [817] = {.lex_state = 302}, + [818] = {.lex_state = 333}, + [819] = {.lex_state = 328}, + [820] = {.lex_state = 275}, + [821] = {.lex_state = 302}, + [822] = {.lex_state = 285}, [823] = {.lex_state = 614}, - [824] = {.lex_state = 310}, - [825] = {.lex_state = 285}, - [826] = {.lex_state = 325}, - [827] = {.lex_state = 310}, - [828] = {.lex_state = 285}, - [829] = {.lex_state = 289}, - [830] = {.lex_state = 615}, - [831] = {.lex_state = 300}, - [832] = {.lex_state = 302}, + [824] = {.lex_state = 615}, + [825] = {.lex_state = 310}, + [826] = {.lex_state = 285}, + [827] = {.lex_state = 326}, + [828] = {.lex_state = 310}, + [829] = {.lex_state = 285}, + [830] = {.lex_state = 289}, + [831] = {.lex_state = 616}, + [832] = {.lex_state = 300}, [833] = {.lex_state = 302}, - [834] = {.lex_state = 305}, + [834] = {.lex_state = 302}, [835] = {.lex_state = 305}, [836] = {.lex_state = 305}, [837] = {.lex_state = 305}, [838] = {.lex_state = 305}, [839] = {.lex_state = 305}, - [840] = {.lex_state = 316}, - [841] = {.lex_state = 298}, - [842] = {.lex_state = 616}, + [840] = {.lex_state = 305}, + [841] = {.lex_state = 316}, + [842] = {.lex_state = 298}, [843] = {.lex_state = 617}, - [844] = {.lex_state = 565}, - [845] = {.lex_state = 351}, - [846] = {.lex_state = 305}, + [844] = {.lex_state = 618}, + [845] = {.lex_state = 566}, + [846] = {.lex_state = 352}, [847] = {.lex_state = 305}, - [848] = {.lex_state = 300}, - [849] = {.lex_state = 351}, - [850] = {.lex_state = 302}, + [848] = {.lex_state = 305}, + [849] = {.lex_state = 300}, + [850] = {.lex_state = 352}, [851] = {.lex_state = 302}, [852] = {.lex_state = 302}, [853] = {.lex_state = 302}, [854] = {.lex_state = 302}, - [855] = {.lex_state = 618}, - [856] = {.lex_state = 351}, - [857] = {.lex_state = 302}, + [855] = {.lex_state = 302}, + [856] = {.lex_state = 619}, + [857] = {.lex_state = 352}, [858] = {.lex_state = 302}, [859] = {.lex_state = 302}, [860] = {.lex_state = 302}, @@ -12806,68 +12850,68 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [862] = {.lex_state = 302}, [863] = {.lex_state = 302}, [864] = {.lex_state = 302}, - [865] = {.lex_state = 312}, - [866] = {.lex_state = 351}, - [867] = {.lex_state = 347}, - [868] = {.lex_state = 618}, - [869] = {.lex_state = 618}, - [870] = {.lex_state = 618}, - [871] = {.lex_state = 618}, - [872] = {.lex_state = 618}, - [873] = {.lex_state = 618}, - [874] = {.lex_state = 618}, - [875] = {.lex_state = 309}, - [876] = {.lex_state = 302}, - [877] = {.lex_state = 618}, - [878] = {.lex_state = 347}, - [879] = {.lex_state = 300}, - [880] = {.lex_state = 618}, - [881] = {.lex_state = 316}, - [882] = {.lex_state = 619}, - [883] = {.lex_state = 618}, - [884] = {.lex_state = 618}, - [885] = {.lex_state = 618}, - [886] = {.lex_state = 618}, - [887] = {.lex_state = 618}, - [888] = {.lex_state = 347}, - [889] = {.lex_state = 316}, - [890] = {.lex_state = 298}, - [891] = {.lex_state = 347}, - [892] = {.lex_state = 285}, - [893] = {.lex_state = 340}, - [894] = {.lex_state = 275}, + [865] = {.lex_state = 302}, + [866] = {.lex_state = 312}, + [867] = {.lex_state = 352}, + [868] = {.lex_state = 348}, + [869] = {.lex_state = 619}, + [870] = {.lex_state = 619}, + [871] = {.lex_state = 619}, + [872] = {.lex_state = 619}, + [873] = {.lex_state = 619}, + [874] = {.lex_state = 619}, + [875] = {.lex_state = 619}, + [876] = {.lex_state = 309}, + [877] = {.lex_state = 302}, + [878] = {.lex_state = 619}, + [879] = {.lex_state = 348}, + [880] = {.lex_state = 300}, + [881] = {.lex_state = 619}, + [882] = {.lex_state = 316}, + [883] = {.lex_state = 620}, + [884] = {.lex_state = 619}, + [885] = {.lex_state = 619}, + [886] = {.lex_state = 619}, + [887] = {.lex_state = 619}, + [888] = {.lex_state = 619}, + [889] = {.lex_state = 348}, + [890] = {.lex_state = 316}, + [891] = {.lex_state = 298}, + [892] = {.lex_state = 348}, + [893] = {.lex_state = 285}, + [894] = {.lex_state = 341}, [895] = {.lex_state = 275}, - [896] = {.lex_state = 284}, - [897] = {.lex_state = 322}, - [898] = {.lex_state = 302}, - [899] = {.lex_state = 285}, - [900] = {.lex_state = 320}, - [901] = {.lex_state = 288}, - [902] = {.lex_state = 289}, - [903] = {.lex_state = 283}, - [904] = {.lex_state = 289}, - [905] = {.lex_state = 302}, - [906] = {.lex_state = 277}, - [907] = {.lex_state = 332}, - [908] = {.lex_state = 327}, - [909] = {.lex_state = 283}, - [910] = {.lex_state = 620}, - [911] = {.lex_state = 285}, - [912] = {.lex_state = 332}, - [913] = {.lex_state = 621}, - [914] = {.lex_state = 322}, - [915] = {.lex_state = 622}, - [916] = {.lex_state = 277}, - [917] = {.lex_state = 623}, - [918] = {.lex_state = 327}, - [919] = {.lex_state = 275}, - [920] = {.lex_state = 624}, - [921] = {.lex_state = 327}, - [922] = {.lex_state = 275}, - [923] = {.lex_state = 625}, - [924] = {.lex_state = 305}, - [925] = {.lex_state = 300}, - [926] = {.lex_state = 305}, + [896] = {.lex_state = 275}, + [897] = {.lex_state = 284}, + [898] = {.lex_state = 323}, + [899] = {.lex_state = 302}, + [900] = {.lex_state = 285}, + [901] = {.lex_state = 321}, + [902] = {.lex_state = 288}, + [903] = {.lex_state = 289}, + [904] = {.lex_state = 283}, + [905] = {.lex_state = 289}, + [906] = {.lex_state = 302}, + [907] = {.lex_state = 277}, + [908] = {.lex_state = 333}, + [909] = {.lex_state = 328}, + [910] = {.lex_state = 283}, + [911] = {.lex_state = 621}, + [912] = {.lex_state = 285}, + [913] = {.lex_state = 333}, + [914] = {.lex_state = 622}, + [915] = {.lex_state = 323}, + [916] = {.lex_state = 623}, + [917] = {.lex_state = 277}, + [918] = {.lex_state = 624}, + [919] = {.lex_state = 328}, + [920] = {.lex_state = 275}, + [921] = {.lex_state = 625}, + [922] = {.lex_state = 328}, + [923] = {.lex_state = 275}, + [924] = {.lex_state = 626}, + [925] = {.lex_state = 305}, + [926] = {.lex_state = 300}, [927] = {.lex_state = 305}, [928] = {.lex_state = 305}, [929] = {.lex_state = 305}, @@ -12876,28 +12920,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [932] = {.lex_state = 305}, [933] = {.lex_state = 305}, [934] = {.lex_state = 305}, - [935] = {.lex_state = 309}, - [936] = {.lex_state = 302}, - [937] = {.lex_state = 305}, - [938] = {.lex_state = 302}, - [939] = {.lex_state = 313}, - [940] = {.lex_state = 347}, - [941] = {.lex_state = 347}, - [942] = {.lex_state = 305}, - [943] = {.lex_state = 347}, - [944] = {.lex_state = 300}, - [945] = {.lex_state = 302}, - [946] = {.lex_state = 566}, - [947] = {.lex_state = 626}, - [948] = {.lex_state = 302}, + [935] = {.lex_state = 305}, + [936] = {.lex_state = 309}, + [937] = {.lex_state = 302}, + [938] = {.lex_state = 305}, + [939] = {.lex_state = 302}, + [940] = {.lex_state = 313}, + [941] = {.lex_state = 348}, + [942] = {.lex_state = 348}, + [943] = {.lex_state = 305}, + [944] = {.lex_state = 348}, + [945] = {.lex_state = 300}, + [946] = {.lex_state = 302}, + [947] = {.lex_state = 567}, + [948] = {.lex_state = 627}, [949] = {.lex_state = 302}, [950] = {.lex_state = 302}, [951] = {.lex_state = 302}, - [952] = {.lex_state = 361}, - [953] = {.lex_state = 262}, - [954] = {.lex_state = 329}, - [955] = {.lex_state = 627}, - [956] = {.lex_state = 302}, + [952] = {.lex_state = 302}, + [953] = {.lex_state = 362}, + [954] = {.lex_state = 262}, + [955] = {.lex_state = 330}, + [956] = {.lex_state = 628}, [957] = {.lex_state = 302}, [958] = {.lex_state = 302}, [959] = {.lex_state = 302}, @@ -12905,80 +12949,80 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [961] = {.lex_state = 302}, [962] = {.lex_state = 302}, [963] = {.lex_state = 302}, - [964] = {.lex_state = 627}, - [965] = {.lex_state = 627}, - [966] = {.lex_state = 627}, - [967] = {.lex_state = 627}, - [968] = {.lex_state = 627}, - [969] = {.lex_state = 627}, - [970] = {.lex_state = 627}, - [971] = {.lex_state = 309}, - [972] = {.lex_state = 302}, - [973] = {.lex_state = 627}, - [974] = {.lex_state = 346}, - [975] = {.lex_state = 620}, - [976] = {.lex_state = 346}, - [977] = {.lex_state = 300}, - [978] = {.lex_state = 627}, - [979] = {.lex_state = 316}, - [980] = {.lex_state = 628}, - [981] = {.lex_state = 627}, - [982] = {.lex_state = 627}, - [983] = {.lex_state = 627}, - [984] = {.lex_state = 627}, - [985] = {.lex_state = 627}, - [986] = {.lex_state = 316}, - [987] = {.lex_state = 298}, - [988] = {.lex_state = 305}, - [989] = {.lex_state = 629}, - [990] = {.lex_state = 285}, - [991] = {.lex_state = 321}, - [992] = {.lex_state = 285}, - [993] = {.lex_state = 321}, - [994] = {.lex_state = 285}, - [995] = {.lex_state = 310}, - [996] = {.lex_state = 293}, - [997] = {.lex_state = 310}, - [998] = {.lex_state = 565}, - [999] = {.lex_state = 630}, - [1000] = {.lex_state = 564}, + [964] = {.lex_state = 302}, + [965] = {.lex_state = 628}, + [966] = {.lex_state = 628}, + [967] = {.lex_state = 628}, + [968] = {.lex_state = 628}, + [969] = {.lex_state = 628}, + [970] = {.lex_state = 628}, + [971] = {.lex_state = 628}, + [972] = {.lex_state = 309}, + [973] = {.lex_state = 302}, + [974] = {.lex_state = 628}, + [975] = {.lex_state = 347}, + [976] = {.lex_state = 621}, + [977] = {.lex_state = 347}, + [978] = {.lex_state = 300}, + [979] = {.lex_state = 628}, + [980] = {.lex_state = 316}, + [981] = {.lex_state = 629}, + [982] = {.lex_state = 628}, + [983] = {.lex_state = 628}, + [984] = {.lex_state = 628}, + [985] = {.lex_state = 628}, + [986] = {.lex_state = 628}, + [987] = {.lex_state = 316}, + [988] = {.lex_state = 298}, + [989] = {.lex_state = 305}, + [990] = {.lex_state = 630}, + [991] = {.lex_state = 285}, + [992] = {.lex_state = 322}, + [993] = {.lex_state = 285}, + [994] = {.lex_state = 322}, + [995] = {.lex_state = 285}, + [996] = {.lex_state = 310}, + [997] = {.lex_state = 293}, + [998] = {.lex_state = 310}, + [999] = {.lex_state = 566}, + [1000] = {.lex_state = 631}, [1001] = {.lex_state = 565}, - [1002] = {.lex_state = 305}, - [1003] = {.lex_state = 630}, + [1002] = {.lex_state = 566}, + [1003] = {.lex_state = 305}, [1004] = {.lex_state = 631}, - [1005] = {.lex_state = 313}, - [1006] = {.lex_state = 618}, - [1007] = {.lex_state = 351}, - [1008] = {.lex_state = 308}, - [1009] = {.lex_state = 618}, - [1010] = {.lex_state = 351}, - [1011] = {.lex_state = 308}, - [1012] = {.lex_state = 312}, - [1013] = {.lex_state = 351}, - [1014] = {.lex_state = 311}, - [1015] = {.lex_state = 347}, - [1016] = {.lex_state = 351}, - [1017] = {.lex_state = 311}, - [1018] = {.lex_state = 312}, - [1019] = {.lex_state = 347}, - [1020] = {.lex_state = 347}, - [1021] = {.lex_state = 347}, - [1022] = {.lex_state = 305}, - [1023] = {.lex_state = 300}, - [1024] = {.lex_state = 312}, - [1025] = {.lex_state = 302}, - [1026] = {.lex_state = 632}, - [1027] = {.lex_state = 302}, + [1005] = {.lex_state = 632}, + [1006] = {.lex_state = 313}, + [1007] = {.lex_state = 619}, + [1008] = {.lex_state = 352}, + [1009] = {.lex_state = 308}, + [1010] = {.lex_state = 619}, + [1011] = {.lex_state = 352}, + [1012] = {.lex_state = 308}, + [1013] = {.lex_state = 312}, + [1014] = {.lex_state = 352}, + [1015] = {.lex_state = 311}, + [1016] = {.lex_state = 348}, + [1017] = {.lex_state = 352}, + [1018] = {.lex_state = 311}, + [1019] = {.lex_state = 312}, + [1020] = {.lex_state = 348}, + [1021] = {.lex_state = 348}, + [1022] = {.lex_state = 348}, + [1023] = {.lex_state = 305}, + [1024] = {.lex_state = 300}, + [1025] = {.lex_state = 312}, + [1026] = {.lex_state = 302}, + [1027] = {.lex_state = 633}, [1028] = {.lex_state = 302}, [1029] = {.lex_state = 302}, [1030] = {.lex_state = 302}, [1031] = {.lex_state = 302}, - [1032] = {.lex_state = 633}, - [1033] = {.lex_state = 620}, - [1034] = {.lex_state = 288}, - [1035] = {.lex_state = 312}, - [1036] = {.lex_state = 634}, - [1037] = {.lex_state = 302}, + [1032] = {.lex_state = 302}, + [1033] = {.lex_state = 634}, + [1034] = {.lex_state = 621}, + [1035] = {.lex_state = 288}, + [1036] = {.lex_state = 312}, + [1037] = {.lex_state = 635}, [1038] = {.lex_state = 302}, [1039] = {.lex_state = 302}, [1040] = {.lex_state = 302}, @@ -12986,101 +13030,102 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1042] = {.lex_state = 302}, [1043] = {.lex_state = 302}, [1044] = {.lex_state = 302}, - [1045] = {.lex_state = 300}, - [1046] = {.lex_state = 634}, - [1047] = {.lex_state = 634}, - [1048] = {.lex_state = 316}, - [1049] = {.lex_state = 298}, - [1050] = {.lex_state = 634}, - [1051] = {.lex_state = 634}, - [1052] = {.lex_state = 634}, - [1053] = {.lex_state = 634}, - [1054] = {.lex_state = 634}, - [1055] = {.lex_state = 634}, - [1056] = {.lex_state = 634}, - [1057] = {.lex_state = 309}, - [1058] = {.lex_state = 302}, - [1059] = {.lex_state = 634}, - [1060] = {.lex_state = 300}, - [1061] = {.lex_state = 634}, - [1062] = {.lex_state = 316}, - [1063] = {.lex_state = 635}, - [1064] = {.lex_state = 634}, - [1065] = {.lex_state = 634}, - [1066] = {.lex_state = 634}, - [1067] = {.lex_state = 636}, - [1068] = {.lex_state = 300}, - [1069] = {.lex_state = 302}, - [1070] = {.lex_state = 323}, - [1071] = {.lex_state = 312}, - [1072] = {.lex_state = 322}, - [1073] = {.lex_state = 630}, - [1074] = {.lex_state = 312}, - [1075] = {.lex_state = 637}, - [1076] = {.lex_state = 631}, - [1077] = {.lex_state = 639}, - [1078] = {.lex_state = 278}, - [1079] = {.lex_state = 322}, - [1080] = {.lex_state = 618}, - [1081] = {.lex_state = 616}, - [1082] = {.lex_state = 347}, - [1083] = {.lex_state = 322}, - [1084] = {.lex_state = 640}, - [1085] = {.lex_state = 320}, - [1086] = {.lex_state = 322}, - [1087] = {.lex_state = 640}, + [1045] = {.lex_state = 302}, + [1046] = {.lex_state = 300}, + [1047] = {.lex_state = 635}, + [1048] = {.lex_state = 635}, + [1049] = {.lex_state = 316}, + [1050] = {.lex_state = 298}, + [1051] = {.lex_state = 635}, + [1052] = {.lex_state = 635}, + [1053] = {.lex_state = 635}, + [1054] = {.lex_state = 635}, + [1055] = {.lex_state = 635}, + [1056] = {.lex_state = 635}, + [1057] = {.lex_state = 635}, + [1058] = {.lex_state = 309}, + [1059] = {.lex_state = 302}, + [1060] = {.lex_state = 635}, + [1061] = {.lex_state = 300}, + [1062] = {.lex_state = 635}, + [1063] = {.lex_state = 316}, + [1064] = {.lex_state = 636}, + [1065] = {.lex_state = 635}, + [1066] = {.lex_state = 635}, + [1067] = {.lex_state = 635}, + [1068] = {.lex_state = 637}, + [1069] = {.lex_state = 300}, + [1070] = {.lex_state = 302}, + [1071] = {.lex_state = 324}, + [1072] = {.lex_state = 312}, + [1073] = {.lex_state = 323}, + [1074] = {.lex_state = 631}, + [1075] = {.lex_state = 312}, + [1076] = {.lex_state = 638}, + [1077] = {.lex_state = 632}, + [1078] = {.lex_state = 640}, + [1079] = {.lex_state = 278}, + [1080] = {.lex_state = 323}, + [1081] = {.lex_state = 619}, + [1082] = {.lex_state = 617}, + [1083] = {.lex_state = 348}, + [1084] = {.lex_state = 323}, + [1085] = {.lex_state = 641}, + [1086] = {.lex_state = 321}, + [1087] = {.lex_state = 323}, + [1088] = {.lex_state = 641}, }; static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { [sym_translation_unit] = STATE(14), - [sym__preproc_statement] = STATE(782), + [sym__preproc_statement] = STATE(783), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), - [sym_preproc_params] = STATE(733), + [sym_preproc_params] = STATE(734), [sym_preproc_call] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(783), - [sym_function_definition] = STATE(782), - [sym_declaration] = STATE(784), - [sym__declaration_specifiers] = STATE(785), - [sym__declarator] = STATE(786), - [sym__abstract_declarator] = STATE(787), + [sym_preproc_else] = STATE(784), + [sym_function_definition] = STATE(783), + [sym_declaration] = STATE(785), + [sym__declaration_specifiers] = STATE(786), + [sym__declarator] = STATE(787), + [sym__abstract_declarator] = STATE(788), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym_init_declarator] = STATE(788), - [sym_compound_statement] = STATE(789), - [sym_storage_class_specifier] = STATE(761), - [sym_type_qualifier] = STATE(790), - [sym__type_specifier] = STATE(791), + [sym_abstract_array_declarator] = STATE(211), + [sym_init_declarator] = STATE(789), + [sym_compound_statement] = STATE(790), + [sym_storage_class_specifier] = STATE(762), + [sym_type_qualifier] = STATE(791), + [sym__type_specifier] = STATE(792), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), - [sym__enum_specifier_contents] = STATE(792), + [sym__enum_specifier_contents] = STATE(793), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(793), - [sym_enumerator] = STATE(794), - [sym_parameter_type_list] = STATE(795), - [sym_parameter_declaration] = STATE(796), - [sym__statement] = STATE(797), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(798), + [sym_struct_declaration] = STATE(794), + [sym_enumerator] = STATE(795), + [sym_parameter_type_list] = STATE(796), + [sym_parameter_declaration] = STATE(797), + [sym__statement] = STATE(798), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(799), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -13096,25 +13141,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(799), - [sym_initializer_list] = STATE(800), - [sym__initializer_list_contents] = STATE(344), - [sym_designator] = STATE(801), - [sym__empty_declaration] = STATE(802), + [sym_type_name] = STATE(800), + [sym_initializer_list] = STATE(801), + [sym__initializer_list_contents] = STATE(345), + [sym_designator] = STATE(802), + [sym__empty_declaration] = STATE(803), [sym_macro_type_specifier] = STATE(19), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym_preproc_params_repeat1] = STATE(742), - [aux_sym_preproc_ifdef_repeat1] = STATE(803), - [aux_sym_declaration_repeat1] = STATE(804), + [aux_sym_preproc_params_repeat1] = STATE(743), + [aux_sym_preproc_ifdef_repeat1] = STATE(804), + [aux_sym_declaration_repeat1] = STATE(805), [aux_sym__declaration_specifiers_repeat1] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(805), - [aux_sym_compound_statement_repeat1] = STATE(511), + [aux_sym_array_declarator_repeat1] = STATE(806), + [aux_sym_compound_statement_repeat1] = STATE(512), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym_struct_specifier_repeat1] = STATE(806), - [aux_sym_struct_declaration_repeat1] = STATE(807), - [aux_sym_parameter_type_list_repeat1] = STATE(230), - [aux_sym_for_statement_repeat1] = STATE(808), - [aux_sym__initializer_list_contents_repeat1] = STATE(809), + [aux_sym_struct_specifier_repeat1] = STATE(807), + [aux_sym_struct_declaration_repeat1] = STATE(808), + [aux_sym_parameter_type_list_repeat1] = STATE(231), + [aux_sym_for_statement_repeat1] = STATE(809), + [aux_sym__initializer_list_contents_repeat1] = STATE(810), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_POUNDinclude] = ACTIONS(3), [anon_sym_POUNDdefine] = ACTIONS(5), @@ -13339,96 +13384,103 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(119), }, [9] = { - [anon_sym_unsigned] = ACTIONS(169), - [anon_sym_long] = ACTIONS(169), - [anon_sym_short] = ACTIONS(169), - [sym_identifier] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RPAREN] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_STAR] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [anon_sym_COLON] = ACTIONS(169), + [sym_identifier] = ACTIONS(173), [sym_comment] = ACTIONS(119), }, [10] = { - [anon_sym_LBRACE] = ACTIONS(173), - [sym_identifier] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(175), + [sym_identifier] = ACTIONS(177), [sym_comment] = ACTIONS(119), }, [11] = { - [anon_sym_LBRACE] = ACTIONS(177), - [sym_identifier] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(179), + [sym_identifier] = ACTIONS(181), [sym_comment] = ACTIONS(119), }, [12] = { - [anon_sym_LBRACE] = ACTIONS(181), - [sym_identifier] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(183), + [sym_identifier] = ACTIONS(185), [sym_comment] = ACTIONS(119), }, [13] = { - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(188), - [anon_sym_RPAREN] = ACTIONS(188), - [anon_sym_SEMI] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(188), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_COLON] = ACTIONS(188), - [sym_identifier] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(190), + [anon_sym_RPAREN] = ACTIONS(190), + [anon_sym_SEMI] = ACTIONS(190), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(190), + [anon_sym_COLON] = ACTIONS(190), + [sym_identifier] = ACTIONS(192), [sym_comment] = ACTIONS(119), }, [14] = { - [ts_builtin_sym_end] = ACTIONS(192), + [ts_builtin_sym_end] = ACTIONS(194), [sym_comment] = ACTIONS(119), }, [15] = { - [ts_builtin_sym_end] = ACTIONS(194), - [anon_sym_POUNDinclude] = ACTIONS(196), - [anon_sym_POUNDdefine] = ACTIONS(196), - [anon_sym_POUNDifdef] = ACTIONS(196), - [anon_sym_POUNDifndef] = ACTIONS(196), - [sym_preproc_directive] = ACTIONS(198), - [anon_sym_static] = ACTIONS(196), - [anon_sym_typedef] = ACTIONS(196), - [anon_sym_extern] = ACTIONS(196), - [anon_sym_auto] = ACTIONS(196), - [anon_sym_register] = ACTIONS(196), - [anon_sym_const] = ACTIONS(196), - [anon_sym_restrict] = ACTIONS(196), - [anon_sym_volatile] = ACTIONS(196), - [sym_function_specifier] = ACTIONS(196), - [anon_sym_unsigned] = ACTIONS(196), - [anon_sym_long] = ACTIONS(196), - [anon_sym_short] = ACTIONS(196), - [anon_sym_enum] = ACTIONS(196), - [anon_sym_struct] = ACTIONS(196), - [anon_sym_union] = ACTIONS(196), - [sym_identifier] = ACTIONS(198), + [ts_builtin_sym_end] = ACTIONS(196), + [anon_sym_POUNDinclude] = ACTIONS(198), + [anon_sym_POUNDdefine] = ACTIONS(198), + [anon_sym_POUNDifdef] = ACTIONS(198), + [anon_sym_POUNDifndef] = ACTIONS(198), + [sym_preproc_directive] = ACTIONS(200), + [anon_sym_static] = ACTIONS(198), + [anon_sym_typedef] = ACTIONS(198), + [anon_sym_extern] = ACTIONS(198), + [anon_sym_auto] = ACTIONS(198), + [anon_sym_register] = ACTIONS(198), + [anon_sym_const] = ACTIONS(198), + [anon_sym_restrict] = ACTIONS(198), + [anon_sym_volatile] = ACTIONS(198), + [sym_function_specifier] = ACTIONS(198), + [anon_sym_unsigned] = ACTIONS(198), + [anon_sym_long] = ACTIONS(198), + [anon_sym_short] = ACTIONS(198), + [anon_sym_enum] = ACTIONS(198), + [anon_sym_struct] = ACTIONS(198), + [anon_sym_union] = ACTIONS(198), + [sym_identifier] = ACTIONS(200), [sym_comment] = ACTIONS(119), }, [16] = { - [ts_builtin_sym_end] = ACTIONS(200), - [anon_sym_POUNDinclude] = ACTIONS(202), - [anon_sym_POUNDdefine] = ACTIONS(202), - [anon_sym_POUNDifdef] = ACTIONS(202), - [anon_sym_POUNDifndef] = ACTIONS(202), - [anon_sym_POUNDendif] = ACTIONS(202), - [anon_sym_POUNDelse] = ACTIONS(202), - [sym_preproc_directive] = ACTIONS(204), - [anon_sym_static] = ACTIONS(202), - [anon_sym_typedef] = ACTIONS(202), - [anon_sym_extern] = ACTIONS(202), - [anon_sym_auto] = ACTIONS(202), - [anon_sym_register] = ACTIONS(202), - [anon_sym_const] = ACTIONS(202), - [anon_sym_restrict] = ACTIONS(202), - [anon_sym_volatile] = ACTIONS(202), - [sym_function_specifier] = ACTIONS(202), - [anon_sym_unsigned] = ACTIONS(202), - [anon_sym_long] = ACTIONS(202), - [anon_sym_short] = ACTIONS(202), - [anon_sym_enum] = ACTIONS(202), - [anon_sym_struct] = ACTIONS(202), - [anon_sym_union] = ACTIONS(202), - [sym_identifier] = ACTIONS(204), + [ts_builtin_sym_end] = ACTIONS(202), + [anon_sym_POUNDinclude] = ACTIONS(204), + [anon_sym_POUNDdefine] = ACTIONS(204), + [anon_sym_POUNDifdef] = ACTIONS(204), + [anon_sym_POUNDifndef] = ACTIONS(204), + [anon_sym_POUNDendif] = ACTIONS(204), + [anon_sym_POUNDelse] = ACTIONS(204), + [sym_preproc_directive] = ACTIONS(206), + [anon_sym_static] = ACTIONS(204), + [anon_sym_typedef] = ACTIONS(204), + [anon_sym_extern] = ACTIONS(204), + [anon_sym_auto] = ACTIONS(204), + [anon_sym_register] = ACTIONS(204), + [anon_sym_const] = ACTIONS(204), + [anon_sym_restrict] = ACTIONS(204), + [anon_sym_volatile] = ACTIONS(204), + [sym_function_specifier] = ACTIONS(204), + [anon_sym_unsigned] = ACTIONS(204), + [anon_sym_long] = ACTIONS(204), + [anon_sym_short] = ACTIONS(204), + [anon_sym_enum] = ACTIONS(204), + [anon_sym_struct] = ACTIONS(204), + [anon_sym_union] = ACTIONS(204), + [sym_identifier] = ACTIONS(206), [sym_comment] = ACTIONS(119), }, [17] = { - [sym__type_specifier] = STATE(711), + [sym__type_specifier] = STATE(712), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -13450,21 +13502,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), [sym_init_declarator] = STATE(32), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(208), - [anon_sym_STAR] = ACTIONS(210), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_STAR] = ACTIONS(212), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [19] = { - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RPAREN] = ACTIONS(214), - [anon_sym_SEMI] = ACTIONS(214), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_LBRACK] = ACTIONS(214), - [anon_sym_COLON] = ACTIONS(214), - [sym_identifier] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_STAR] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(216), + [sym_identifier] = ACTIONS(218), [sym_comment] = ACTIONS(119), }, [20] = { @@ -13488,7 +13540,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [ts_builtin_sym_end] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(220), [anon_sym_POUNDinclude] = ACTIONS(123), [anon_sym_POUNDdefine] = ACTIONS(125), [anon_sym_POUNDifdef] = ACTIONS(127), @@ -13523,253 +13575,267 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [sym_function_specifier] = ACTIONS(220), - [anon_sym_unsigned] = ACTIONS(222), - [anon_sym_long] = ACTIONS(222), - [anon_sym_short] = ACTIONS(222), - [anon_sym_enum] = ACTIONS(222), - [anon_sym_struct] = ACTIONS(222), - [anon_sym_union] = ACTIONS(222), - [sym_identifier] = ACTIONS(224), + [sym_function_specifier] = ACTIONS(222), + [anon_sym_unsigned] = ACTIONS(224), + [anon_sym_long] = ACTIONS(224), + [anon_sym_short] = ACTIONS(224), + [anon_sym_enum] = ACTIONS(224), + [anon_sym_struct] = ACTIONS(224), + [anon_sym_union] = ACTIONS(224), + [sym_identifier] = ACTIONS(226), [sym_comment] = ACTIONS(119), }, [22] = { - [anon_sym_unsigned] = ACTIONS(226), - [anon_sym_long] = ACTIONS(226), - [anon_sym_short] = ACTIONS(226), - [sym_identifier] = ACTIONS(228), - [sym_comment] = ACTIONS(119), - }, - [23] = { + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_COMMA] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [anon_sym_STAR] = ACTIONS(228), + [anon_sym_LBRACK] = ACTIONS(228), [anon_sym_unsigned] = ACTIONS(230), [anon_sym_long] = ACTIONS(230), [anon_sym_short] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(228), [sym_identifier] = ACTIONS(232), [sym_comment] = ACTIONS(119), }, + [23] = { + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(235), + [anon_sym_RPAREN] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(237), + [anon_sym_long] = ACTIONS(237), + [anon_sym_short] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [sym_identifier] = ACTIONS(239), + [sym_comment] = ACTIONS(119), + }, [24] = { - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_COMMA] = ACTIONS(234), - [anon_sym_RPAREN] = ACTIONS(234), - [anon_sym_SEMI] = ACTIONS(234), - [anon_sym_STAR] = ACTIONS(234), - [anon_sym_LBRACK] = ACTIONS(234), - [anon_sym_COLON] = ACTIONS(234), - [sym_identifier] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(241), + [sym_identifier] = ACTIONS(243), [sym_comment] = ACTIONS(119), }, [25] = { - [anon_sym_static] = ACTIONS(238), - [anon_sym_typedef] = ACTIONS(238), - [anon_sym_extern] = ACTIONS(238), - [anon_sym_auto] = ACTIONS(238), - [anon_sym_register] = ACTIONS(238), - [anon_sym_const] = ACTIONS(238), - [anon_sym_restrict] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [sym_function_specifier] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(238), - [anon_sym_struct] = ACTIONS(238), - [anon_sym_union] = ACTIONS(238), - [sym_identifier] = ACTIONS(240), + [anon_sym_static] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(245), + [anon_sym_extern] = ACTIONS(245), + [anon_sym_auto] = ACTIONS(245), + [anon_sym_register] = ACTIONS(245), + [anon_sym_const] = ACTIONS(245), + [anon_sym_restrict] = ACTIONS(245), + [anon_sym_volatile] = ACTIONS(245), + [sym_function_specifier] = ACTIONS(245), + [anon_sym_unsigned] = ACTIONS(245), + [anon_sym_long] = ACTIONS(245), + [anon_sym_short] = ACTIONS(245), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(245), + [anon_sym_union] = ACTIONS(245), + [sym_identifier] = ACTIONS(247), [sym_comment] = ACTIONS(119), }, [26] = { - [ts_builtin_sym_end] = ACTIONS(242), - [anon_sym_POUNDinclude] = ACTIONS(244), - [anon_sym_POUNDdefine] = ACTIONS(244), - [anon_sym_POUNDifdef] = ACTIONS(244), - [anon_sym_POUNDifndef] = ACTIONS(244), - [sym_preproc_directive] = ACTIONS(246), - [anon_sym_static] = ACTIONS(244), - [anon_sym_typedef] = ACTIONS(244), - [anon_sym_extern] = ACTIONS(244), - [anon_sym_auto] = ACTIONS(244), - [anon_sym_register] = ACTIONS(244), - [anon_sym_const] = ACTIONS(244), - [anon_sym_restrict] = ACTIONS(244), - [anon_sym_volatile] = ACTIONS(244), - [sym_function_specifier] = ACTIONS(244), - [anon_sym_unsigned] = ACTIONS(244), - [anon_sym_long] = ACTIONS(244), - [anon_sym_short] = ACTIONS(244), - [anon_sym_enum] = ACTIONS(244), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), + [ts_builtin_sym_end] = ACTIONS(249), + [anon_sym_POUNDinclude] = ACTIONS(251), + [anon_sym_POUNDdefine] = ACTIONS(251), + [anon_sym_POUNDifdef] = ACTIONS(251), + [anon_sym_POUNDifndef] = ACTIONS(251), + [sym_preproc_directive] = ACTIONS(253), + [anon_sym_static] = ACTIONS(251), + [anon_sym_typedef] = ACTIONS(251), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_auto] = ACTIONS(251), + [anon_sym_register] = ACTIONS(251), + [anon_sym_const] = ACTIONS(251), + [anon_sym_restrict] = ACTIONS(251), + [anon_sym_volatile] = ACTIONS(251), + [sym_function_specifier] = ACTIONS(251), + [anon_sym_unsigned] = ACTIONS(251), + [anon_sym_long] = ACTIONS(251), + [anon_sym_short] = ACTIONS(251), + [anon_sym_enum] = ACTIONS(251), + [anon_sym_struct] = ACTIONS(251), + [anon_sym_union] = ACTIONS(251), + [sym_identifier] = ACTIONS(253), [sym_comment] = ACTIONS(119), }, [27] = { - [sym__declarator] = STATE(262), + [sym__declarator] = STATE(263), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(248), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(255), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [28] = { - [ts_builtin_sym_end] = ACTIONS(250), - [anon_sym_POUNDinclude] = ACTIONS(252), - [anon_sym_POUNDdefine] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(250), - [anon_sym_POUNDifdef] = ACTIONS(252), - [anon_sym_POUNDifndef] = ACTIONS(252), - [sym_preproc_directive] = ACTIONS(254), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_STAR] = ACTIONS(250), - [anon_sym_static] = ACTIONS(252), - [anon_sym_LBRACE] = ACTIONS(250), - [anon_sym_RBRACE] = ACTIONS(250), - [anon_sym_typedef] = ACTIONS(252), - [anon_sym_extern] = ACTIONS(252), - [anon_sym_auto] = ACTIONS(252), - [anon_sym_register] = ACTIONS(252), - [anon_sym_const] = ACTIONS(252), - [anon_sym_restrict] = ACTIONS(252), - [anon_sym_volatile] = ACTIONS(252), - [sym_function_specifier] = ACTIONS(252), - [anon_sym_unsigned] = ACTIONS(252), - [anon_sym_long] = ACTIONS(252), - [anon_sym_short] = ACTIONS(252), - [anon_sym_enum] = ACTIONS(252), - [anon_sym_struct] = ACTIONS(252), - [anon_sym_union] = ACTIONS(252), - [anon_sym_if] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(252), - [anon_sym_case] = ACTIONS(252), - [anon_sym_default] = ACTIONS(252), - [anon_sym_while] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_for] = ACTIONS(252), - [anon_sym_return] = ACTIONS(252), - [anon_sym_break] = ACTIONS(252), - [anon_sym_continue] = ACTIONS(252), - [anon_sym_goto] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(250), - [anon_sym_PLUS_PLUS] = ACTIONS(250), - [anon_sym_sizeof] = ACTIONS(252), - [sym_number_literal] = ACTIONS(252), - [sym_char_literal] = ACTIONS(252), - [sym_string_literal] = ACTIONS(252), - [sym_identifier] = ACTIONS(254), + [ts_builtin_sym_end] = ACTIONS(257), + [anon_sym_POUNDinclude] = ACTIONS(259), + [anon_sym_POUNDdefine] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_POUNDifdef] = ACTIONS(259), + [anon_sym_POUNDifndef] = ACTIONS(259), + [sym_preproc_directive] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_static] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_auto] = ACTIONS(259), + [anon_sym_register] = ACTIONS(259), + [anon_sym_const] = ACTIONS(259), + [anon_sym_restrict] = ACTIONS(259), + [anon_sym_volatile] = ACTIONS(259), + [sym_function_specifier] = ACTIONS(259), + [anon_sym_unsigned] = ACTIONS(259), + [anon_sym_long] = ACTIONS(259), + [anon_sym_short] = ACTIONS(259), + [anon_sym_enum] = ACTIONS(259), + [anon_sym_struct] = ACTIONS(259), + [anon_sym_union] = ACTIONS(259), + [anon_sym_if] = ACTIONS(259), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_do] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_goto] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_sizeof] = ACTIONS(259), + [sym_number_literal] = ACTIONS(259), + [sym_char_literal] = ACTIONS(259), + [sym_string_literal] = ACTIONS(259), + [sym_identifier] = ACTIONS(261), [sym_comment] = ACTIONS(119), }, [29] = { - [sym__declarator] = STATE(259), + [sym__declarator] = STATE(260), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(210), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(212), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [30] = { - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LBRACK] = ACTIONS(256), - [anon_sym_EQ] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(256), - [anon_sym_COLON] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_RPAREN] = ACTIONS(263), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_COLON] = ACTIONS(263), [sym_comment] = ACTIONS(119), }, [31] = { - [sym_compound_statement] = STATE(491), + [sym_compound_statement] = STATE(492), [aux_sym_declaration_repeat1] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(275), [sym_comment] = ACTIONS(119), }, [32] = { [aux_sym_declaration_repeat1] = STATE(35), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), [sym_comment] = ACTIONS(119), }, [33] = { - [sym__declarator] = STATE(488), + [sym__declarator] = STATE(489), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym_init_declarator] = STATE(489), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(270), - [sym_identifier] = ACTIONS(212), + [sym_init_declarator] = STATE(490), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(277), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [34] = { - [ts_builtin_sym_end] = ACTIONS(272), - [anon_sym_POUNDinclude] = ACTIONS(274), - [anon_sym_POUNDdefine] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_POUNDifdef] = ACTIONS(274), - [anon_sym_POUNDifndef] = ACTIONS(274), - [anon_sym_POUNDendif] = ACTIONS(274), - [anon_sym_POUNDelse] = ACTIONS(274), - [sym_preproc_directive] = ACTIONS(276), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_static] = ACTIONS(274), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_typedef] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_auto] = ACTIONS(274), - [anon_sym_register] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_restrict] = ACTIONS(274), - [anon_sym_volatile] = ACTIONS(274), - [sym_function_specifier] = ACTIONS(274), - [anon_sym_unsigned] = ACTIONS(274), - [anon_sym_long] = ACTIONS(274), - [anon_sym_short] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_union] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_switch] = ACTIONS(274), - [anon_sym_case] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_for] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_goto] = ACTIONS(274), - [anon_sym_AMP] = ACTIONS(272), - [anon_sym_BANG] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_DASH] = ACTIONS(274), - [anon_sym_DASH_DASH] = ACTIONS(272), - [anon_sym_PLUS_PLUS] = ACTIONS(272), - [anon_sym_sizeof] = ACTIONS(274), - [sym_number_literal] = ACTIONS(274), - [sym_char_literal] = ACTIONS(274), - [sym_string_literal] = ACTIONS(274), - [sym_identifier] = ACTIONS(276), + [ts_builtin_sym_end] = ACTIONS(279), + [anon_sym_POUNDinclude] = ACTIONS(281), + [anon_sym_POUNDdefine] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_POUNDifdef] = ACTIONS(281), + [anon_sym_POUNDifndef] = ACTIONS(281), + [anon_sym_POUNDendif] = ACTIONS(281), + [anon_sym_POUNDelse] = ACTIONS(281), + [sym_preproc_directive] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_static] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_typedef] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_auto] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [anon_sym_restrict] = ACTIONS(281), + [anon_sym_volatile] = ACTIONS(281), + [sym_function_specifier] = ACTIONS(281), + [anon_sym_unsigned] = ACTIONS(281), + [anon_sym_long] = ACTIONS(281), + [anon_sym_short] = ACTIONS(281), + [anon_sym_enum] = ACTIONS(281), + [anon_sym_struct] = ACTIONS(281), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(281), + [anon_sym_case] = ACTIONS(281), + [anon_sym_default] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_goto] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(279), + [anon_sym_sizeof] = ACTIONS(281), + [sym_number_literal] = ACTIONS(281), + [sym_char_literal] = ACTIONS(281), + [sym_string_literal] = ACTIONS(281), + [sym_identifier] = ACTIONS(283), [sym_comment] = ACTIONS(119), }, [35] = { - [anon_sym_COMMA] = ACTIONS(278), - [anon_sym_SEMI] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(287), [sym_comment] = ACTIONS(119), }, [36] = { @@ -13778,104 +13844,104 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), [sym_init_declarator] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(270), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(277), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [37] = { - [ts_builtin_sym_end] = ACTIONS(282), - [anon_sym_POUNDinclude] = ACTIONS(284), - [anon_sym_POUNDdefine] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_POUNDifdef] = ACTIONS(284), - [anon_sym_POUNDifndef] = ACTIONS(284), - [anon_sym_POUNDendif] = ACTIONS(284), - [anon_sym_POUNDelse] = ACTIONS(284), - [sym_preproc_directive] = ACTIONS(286), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_static] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_RBRACE] = ACTIONS(282), - [anon_sym_typedef] = ACTIONS(284), - [anon_sym_extern] = ACTIONS(284), - [anon_sym_auto] = ACTIONS(284), - [anon_sym_register] = ACTIONS(284), - [anon_sym_const] = ACTIONS(284), - [anon_sym_restrict] = ACTIONS(284), - [anon_sym_volatile] = ACTIONS(284), - [sym_function_specifier] = ACTIONS(284), - [anon_sym_unsigned] = ACTIONS(284), - [anon_sym_long] = ACTIONS(284), - [anon_sym_short] = ACTIONS(284), - [anon_sym_enum] = ACTIONS(284), - [anon_sym_struct] = ACTIONS(284), - [anon_sym_union] = ACTIONS(284), - [anon_sym_if] = ACTIONS(284), - [anon_sym_switch] = ACTIONS(284), - [anon_sym_case] = ACTIONS(284), - [anon_sym_default] = ACTIONS(284), - [anon_sym_while] = ACTIONS(284), - [anon_sym_do] = ACTIONS(284), - [anon_sym_for] = ACTIONS(284), - [anon_sym_return] = ACTIONS(284), - [anon_sym_break] = ACTIONS(284), - [anon_sym_continue] = ACTIONS(284), - [anon_sym_goto] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(282), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(284), - [anon_sym_DASH_DASH] = ACTIONS(282), - [anon_sym_PLUS_PLUS] = ACTIONS(282), - [anon_sym_sizeof] = ACTIONS(284), - [sym_number_literal] = ACTIONS(284), - [sym_char_literal] = ACTIONS(284), - [sym_string_literal] = ACTIONS(284), - [sym_identifier] = ACTIONS(286), + [ts_builtin_sym_end] = ACTIONS(289), + [anon_sym_POUNDinclude] = ACTIONS(291), + [anon_sym_POUNDdefine] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_POUNDifdef] = ACTIONS(291), + [anon_sym_POUNDifndef] = ACTIONS(291), + [anon_sym_POUNDendif] = ACTIONS(291), + [anon_sym_POUNDelse] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(289), + [anon_sym_static] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_typedef] = ACTIONS(291), + [anon_sym_extern] = ACTIONS(291), + [anon_sym_auto] = ACTIONS(291), + [anon_sym_register] = ACTIONS(291), + [anon_sym_const] = ACTIONS(291), + [anon_sym_restrict] = ACTIONS(291), + [anon_sym_volatile] = ACTIONS(291), + [sym_function_specifier] = ACTIONS(291), + [anon_sym_unsigned] = ACTIONS(291), + [anon_sym_long] = ACTIONS(291), + [anon_sym_short] = ACTIONS(291), + [anon_sym_enum] = ACTIONS(291), + [anon_sym_struct] = ACTIONS(291), + [anon_sym_union] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_switch] = ACTIONS(291), + [anon_sym_case] = ACTIONS(291), + [anon_sym_default] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_for] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_break] = ACTIONS(291), + [anon_sym_continue] = ACTIONS(291), + [anon_sym_goto] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_DASH_DASH] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(289), + [anon_sym_sizeof] = ACTIONS(291), + [sym_number_literal] = ACTIONS(291), + [sym_char_literal] = ACTIONS(291), + [sym_string_literal] = ACTIONS(291), + [sym_identifier] = ACTIONS(293), [sym_comment] = ACTIONS(119), }, [38] = { - [sym__declarator] = STATE(259), + [sym__declarator] = STATE(260), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(270), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(277), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [39] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(288), - [anon_sym_SEMI] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), [sym_comment] = ACTIONS(119), }, [40] = { - [anon_sym_COMMA] = ACTIONS(288), - [anon_sym_SEMI] = ACTIONS(288), + [anon_sym_COMMA] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(295), [sym_comment] = ACTIONS(119), }, [41] = { - [sym__declaration_specifiers] = STATE(226), + [sym__declaration_specifiers] = STATE(227), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(227), + [sym__type_specifier] = STATE(228), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_parameter_type_list] = STATE(251), - [sym_parameter_declaration] = STATE(224), + [sym_parameter_type_list] = STATE(252), + [sym_parameter_declaration] = STATE(225), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_DOT_DOT_DOT] = ACTIONS(290), - [anon_sym_RPAREN] = ACTIONS(292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(297), + [anon_sym_RPAREN] = ACTIONS(299), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -13896,7 +13962,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [42] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(241), + [sym__expression] = STATE(242), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -13912,26 +13978,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(242), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(298), - [anon_sym_RBRACK] = ACTIONS(300), + [aux_sym_array_declarator_repeat1] = STATE(243), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(307), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [43] = { @@ -13952,21 +14018,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), [sym_initializer_list] = STATE(54), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [44] = { @@ -13992,12 +14058,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(486), + [sym_type_name] = STATE(487), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -14007,22 +14073,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [45] = { - [sym__expression] = STATE(417), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -14038,24 +14104,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [46] = { - [sym__expression] = STATE(342), + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -14071,31 +14137,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(343), - [sym__initializer_list_contents] = STATE(344), - [sym_designator] = STATE(345), - [aux_sym__initializer_list_contents_repeat1] = STATE(346), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_LBRACK] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(364), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(344), + [sym__initializer_list_contents] = STATE(345), + [sym_designator] = STATE(346), + [aux_sym__initializer_list_contents_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(371), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [47] = { - [sym__expression] = STATE(416), + [sym__expression] = STATE(417), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -14111,24 +14177,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [48] = { - [sym__expression] = STATE(415), + [sym__expression] = STATE(416), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -14144,24 +14210,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [49] = { - [sym__expression] = STATE(414), + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -14177,24 +14243,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [50] = { - [sym__expression] = STATE(483), + [sym__expression] = STATE(484), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -14210,156 +14276,156 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [51] = { - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(119), }, [52] = { - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(372), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [53] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(386), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [54] = { - [anon_sym_COMMA] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(378), + [anon_sym_COMMA] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(385), [sym_comment] = ACTIONS(119), }, [55] = { @@ -14379,21 +14445,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [56] = { @@ -14413,20 +14479,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [57] = { @@ -14446,20 +14512,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [58] = { @@ -14479,20 +14545,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [59] = { @@ -14512,20 +14578,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [60] = { @@ -14545,20 +14611,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [61] = { @@ -14578,20 +14644,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [62] = { @@ -14611,20 +14677,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [63] = { @@ -14644,20 +14710,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [64] = { @@ -14677,20 +14743,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [65] = { @@ -14710,20 +14776,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [66] = { @@ -14743,20 +14809,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [67] = { @@ -14776,20 +14842,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [68] = { @@ -14809,569 +14875,569 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [69] = { - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(444), - [anon_sym_RPAREN] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(444), - [anon_sym_RBRACK] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_STAR_EQ] = ACTIONS(444), - [anon_sym_SLASH_EQ] = ACTIONS(444), - [anon_sym_PERCENT_EQ] = ACTIONS(444), - [anon_sym_PLUS_EQ] = ACTIONS(444), - [anon_sym_DASH_EQ] = ACTIONS(444), - [anon_sym_LT_LT_EQ] = ACTIONS(444), - [anon_sym_GT_GT_EQ] = ACTIONS(444), - [anon_sym_AMP_EQ] = ACTIONS(444), - [anon_sym_CARET_EQ] = ACTIONS(444), - [anon_sym_PIPE_EQ] = ACTIONS(444), - [anon_sym_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(444), - [anon_sym_AMP_AMP] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_EQ_EQ] = ACTIONS(444), - [anon_sym_BANG_EQ] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(446), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(444), - [anon_sym_PLUS_PLUS] = ACTIONS(444), - [anon_sym_DOT] = ACTIONS(444), - [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(451), + [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_comment] = ACTIONS(119), }, [70] = { - [sym_identifier] = ACTIONS(448), + [sym_identifier] = ACTIONS(455), [sym_comment] = ACTIONS(119), }, [71] = { - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_RBRACK] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_COLON] = ACTIONS(450), - [anon_sym_QMARK] = ACTIONS(450), - [anon_sym_STAR_EQ] = ACTIONS(450), - [anon_sym_SLASH_EQ] = ACTIONS(450), - [anon_sym_PERCENT_EQ] = ACTIONS(450), - [anon_sym_PLUS_EQ] = ACTIONS(450), - [anon_sym_DASH_EQ] = ACTIONS(450), - [anon_sym_LT_LT_EQ] = ACTIONS(450), - [anon_sym_GT_GT_EQ] = ACTIONS(450), - [anon_sym_AMP_EQ] = ACTIONS(450), - [anon_sym_CARET_EQ] = ACTIONS(450), - [anon_sym_PIPE_EQ] = ACTIONS(450), - [anon_sym_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(450), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_DASH_DASH] = ACTIONS(450), - [anon_sym_PLUS_PLUS] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_DASH_GT] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_RPAREN] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_STAR] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_RBRACK] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(457), + [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_comment] = ACTIONS(119), }, [72] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_RBRACE] = ACTIONS(461), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [73] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [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(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [74] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(467), + [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(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [75] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [76] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [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(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [77] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [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(397), + [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(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [78] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [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(397), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [79] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [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(397), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [80] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [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(397), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [81] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [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(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [82] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [83] = { @@ -15397,12 +15463,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(480), + [sym_type_name] = STATE(481), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -15412,22 +15478,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [84] = { - [sym__expression] = STATE(417), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -15443,24 +15509,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [85] = { - [sym__expression] = STATE(416), + [sym__expression] = STATE(417), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -15476,24 +15542,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [86] = { - [sym__expression] = STATE(415), + [sym__expression] = STATE(416), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -15509,24 +15575,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [87] = { - [sym__expression] = STATE(414), + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -15542,24 +15608,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [88] = { - [sym__expression] = STATE(477), + [sym__expression] = STATE(478), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -15575,60 +15641,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [89] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [90] = { @@ -15648,20 +15714,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [91] = { @@ -15681,20 +15747,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [92] = { @@ -15714,20 +15780,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [93] = { @@ -15747,20 +15813,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [94] = { @@ -15780,20 +15846,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [95] = { @@ -15813,20 +15879,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [96] = { @@ -15846,20 +15912,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [97] = { @@ -15879,20 +15945,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [98] = { @@ -15912,20 +15978,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [99] = { @@ -15945,20 +16011,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [100] = { @@ -15978,20 +16044,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [101] = { @@ -16011,20 +16077,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [102] = { @@ -16044,460 +16110,460 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [103] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [104] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(517), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [105] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_COLON] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [106] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_COLON] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [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(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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [107] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_COLON] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [108] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_COLON] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [109] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_COLON] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(499), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [110] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_COLON] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(499), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [111] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_COLON] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [112] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [113] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [114] = { @@ -16517,101 +16583,101 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [115] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [116] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(386), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [117] = { @@ -16637,12 +16703,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(474), + [sym_type_name] = STATE(475), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -16652,22 +16718,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [118] = { - [sym__expression] = STATE(417), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -16683,24 +16749,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [119] = { - [sym__expression] = STATE(416), + [sym__expression] = STATE(417), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -16716,24 +16782,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [120] = { - [sym__expression] = STATE(415), + [sym__expression] = STATE(416), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -16749,24 +16815,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [121] = { - [sym__expression] = STATE(414), + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -16782,24 +16848,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [122] = { - [sym__expression] = STATE(471), + [sym__expression] = STATE(472), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -16815,60 +16881,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [123] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [124] = { @@ -16888,65 +16954,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [125] = { - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_RBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(548), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_DASH_GT] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(555), + [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), [sym_comment] = ACTIONS(119), }, [126] = { @@ -16966,20 +17032,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [127] = { @@ -16999,20 +17065,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [128] = { @@ -17032,20 +17098,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [129] = { @@ -17065,20 +17131,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [130] = { @@ -17098,20 +17164,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [131] = { @@ -17131,20 +17197,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [132] = { @@ -17164,20 +17230,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [133] = { @@ -17197,20 +17263,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [134] = { @@ -17230,20 +17296,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [135] = { @@ -17263,20 +17329,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [136] = { @@ -17296,460 +17362,460 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [137] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [138] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(467), + [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(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(525), + [anon_sym_PERCENT] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [139] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [140] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [141] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [142] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [143] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(535), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [144] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(535), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [145] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [146] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(529), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [147] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(552), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [148] = { @@ -17769,60 +17835,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [149] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [150] = { @@ -17848,12 +17914,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(468), + [sym_type_name] = STATE(469), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -17863,67 +17929,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [151] = { - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_RPAREN] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_RBRACK] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_DASH_DASH] = ACTIONS(554), - [anon_sym_PLUS_PLUS] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(561), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(561), + [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_comment] = ACTIONS(119), }, [152] = { - [sym__expression] = STATE(417), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -17939,24 +18005,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [153] = { - [sym__expression] = STATE(416), + [sym__expression] = STATE(417), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -17972,24 +18038,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [154] = { - [sym__expression] = STATE(415), + [sym__expression] = STATE(416), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -18005,24 +18071,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [155] = { - [sym__expression] = STATE(414), + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -18038,20 +18104,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [156] = { @@ -18071,62 +18137,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [157] = { [aux_sym_for_statement_repeat1] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [158] = { @@ -18146,65 +18212,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [159] = { - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_RPAREN] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_RBRACK] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(599), + [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), + [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), [sym_comment] = ACTIONS(119), }, [160] = { @@ -18224,20 +18290,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [161] = { @@ -18257,20 +18323,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [162] = { @@ -18290,20 +18356,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [163] = { @@ -18323,20 +18389,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [164] = { @@ -18356,20 +18422,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [165] = { @@ -18389,20 +18455,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [166] = { @@ -18422,20 +18488,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [167] = { @@ -18455,20 +18521,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [168] = { @@ -18488,20 +18554,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [169] = { @@ -18521,20 +18587,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [170] = { @@ -18554,20 +18620,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [171] = { @@ -18587,25 +18653,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [172] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(605), [sym_comment] = ACTIONS(119), }, [173] = { @@ -18625,556 +18691,556 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [174] = { - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_COLON] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(607), + [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), [sym_comment] = ACTIONS(119), }, [175] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [176] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [177] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(467), + [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(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [178] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [179] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [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(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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [180] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [181] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [182] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(579), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [183] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(579), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [184] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [185] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [186] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [187] = { @@ -19194,102 +19260,102 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [188] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [189] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [190] = { @@ -19318,9 +19384,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_name] = STATE(202), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -19330,59 +19396,59 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [191] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [192] = { @@ -19408,12 +19474,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(466), + [sym_type_name] = STATE(467), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -19423,22 +19489,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [193] = { - [sym__expression] = STATE(417), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19454,24 +19520,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [194] = { - [sym__expression] = STATE(416), + [sym__expression] = STATE(417), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19487,24 +19553,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [195] = { - [sym__expression] = STATE(415), + [sym__expression] = STATE(416), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19520,24 +19586,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [196] = { - [sym__expression] = STATE(414), + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19553,24 +19619,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [197] = { - [sym__expression] = STATE(463), + [sym__expression] = STATE(464), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19586,154 +19652,154 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(621), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [198] = { - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(627), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [199] = { - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_static] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(626), - [anon_sym_const] = ACTIONS(628), - [anon_sym_restrict] = ACTIONS(628), - [anon_sym_volatile] = ACTIONS(628), - [anon_sym_unsigned] = ACTIONS(628), - [anon_sym_long] = ACTIONS(628), - [anon_sym_short] = ACTIONS(628), - [anon_sym_enum] = ACTIONS(628), - [anon_sym_struct] = ACTIONS(628), - [anon_sym_union] = ACTIONS(628), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_PLUS] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_DASH_DASH] = ACTIONS(626), - [anon_sym_PLUS_PLUS] = ACTIONS(626), - [anon_sym_sizeof] = ACTIONS(628), - [sym_number_literal] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [sym_string_literal] = ACTIONS(628), - [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_static] = ACTIONS(635), + [anon_sym_RBRACK] = ACTIONS(633), + [anon_sym_const] = ACTIONS(635), + [anon_sym_restrict] = ACTIONS(635), + [anon_sym_volatile] = ACTIONS(635), + [anon_sym_unsigned] = ACTIONS(635), + [anon_sym_long] = ACTIONS(635), + [anon_sym_short] = ACTIONS(635), + [anon_sym_enum] = ACTIONS(635), + [anon_sym_struct] = ACTIONS(635), + [anon_sym_union] = ACTIONS(635), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_DASH_DASH] = ACTIONS(633), + [anon_sym_PLUS_PLUS] = ACTIONS(633), + [anon_sym_sizeof] = ACTIONS(635), + [sym_number_literal] = ACTIONS(635), + [sym_char_literal] = ACTIONS(635), + [sym_string_literal] = ACTIONS(635), + [sym_identifier] = ACTIONS(637), [sym_comment] = ACTIONS(119), }, [200] = { - [sym__abstract_declarator] = STATE(461), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_abstract_function_declarator] = STATE(210), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(638), + [sym__abstract_declarator] = STATE(462), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_abstract_function_declarator] = STATE(211), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(645), [sym_comment] = ACTIONS(119), }, [201] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(647), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [202] = { - [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_RPAREN] = ACTIONS(677), [sym_comment] = ACTIONS(119), }, [203] = { - [sym_type_qualifier] = STATE(204), - [sym__type_specifier] = STATE(205), + [sym_type_qualifier] = STATE(205), + [sym__type_specifier] = STATE(206), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), [sym_macro_type_specifier] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -19747,68 +19813,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(119), }, [204] = { - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_static] = ACTIONS(674), - [anon_sym_RBRACK] = ACTIONS(672), - [anon_sym_const] = ACTIONS(674), - [anon_sym_restrict] = ACTIONS(674), - [anon_sym_volatile] = ACTIONS(674), - [anon_sym_unsigned] = ACTIONS(674), - [anon_sym_long] = ACTIONS(674), - [anon_sym_short] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_sizeof] = ACTIONS(674), - [sym_number_literal] = ACTIONS(674), - [sym_char_literal] = ACTIONS(674), - [sym_string_literal] = ACTIONS(674), - [sym_identifier] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_STAR] = ACTIONS(228), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_unsigned] = ACTIONS(230), + [anon_sym_long] = ACTIONS(230), + [anon_sym_short] = ACTIONS(230), + [sym_identifier] = ACTIONS(679), [sym_comment] = ACTIONS(119), }, [205] = { - [sym__abstract_declarator] = STATE(209), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_abstract_function_declarator] = STATE(210), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_static] = ACTIONS(683), + [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_const] = ACTIONS(683), + [anon_sym_restrict] = ACTIONS(683), + [anon_sym_volatile] = ACTIONS(683), + [anon_sym_unsigned] = ACTIONS(683), + [anon_sym_long] = ACTIONS(683), + [anon_sym_short] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_sizeof] = ACTIONS(683), + [sym_number_literal] = ACTIONS(683), + [sym_char_literal] = ACTIONS(683), + [sym_string_literal] = ACTIONS(683), + [sym_identifier] = ACTIONS(685), [sym_comment] = ACTIONS(119), }, [206] = { - [sym__abstract_declarator] = STATE(263), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_abstract_function_declarator] = STATE(210), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(638), + [sym__abstract_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_abstract_function_declarator] = STATE(211), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(645), [sym_comment] = ACTIONS(119), }, [207] = { - [sym__abstract_declarator] = STATE(260), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_abstract_function_declarator] = STATE(210), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(638), + [sym__abstract_declarator] = STATE(264), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_abstract_function_declarator] = STATE(211), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(645), [sym_comment] = ACTIONS(119), }, [208] = { + [sym__abstract_declarator] = STATE(261), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_abstract_function_declarator] = STATE(211), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_comment] = ACTIONS(119), + }, + [209] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(255), + [sym__expression] = STATE(256), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19824,57 +19901,57 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(256), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(682), - [anon_sym_RBRACK] = ACTIONS(684), + [aux_sym_array_declarator_repeat1] = STATE(257), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(693), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [209] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [210] = { - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), [sym_comment] = ACTIONS(119), }, [211] = { - [sym__declaration_specifiers] = STATE(226), + [anon_sym_LPAREN] = ACTIONS(701), + [anon_sym_COMMA] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(701), + [sym_comment] = ACTIONS(119), + }, + [212] = { + [sym__declaration_specifiers] = STATE(227), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(227), + [sym__type_specifier] = STATE(228), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_parameter_type_list] = STATE(228), - [sym_parameter_declaration] = STATE(224), + [sym_parameter_type_list] = STATE(229), + [sym_parameter_declaration] = STATE(225), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_DOT_DOT_DOT] = ACTIONS(290), - [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(297), + [anon_sym_RPAREN] = ACTIONS(703), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -19893,9 +19970,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [212] = { + [213] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(215), + [sym__expression] = STATE(216), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19911,31 +19988,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(696), - [anon_sym_RBRACK] = ACTIONS(698), + [aux_sym_array_declarator_repeat1] = STATE(217), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(705), + [anon_sym_RBRACK] = ACTIONS(707), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [213] = { + [214] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(219), + [sym__expression] = STATE(220), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -19951,77 +20028,77 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(223), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(700), + [aux_sym_array_declarator_repeat1] = STATE(224), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(709), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [214] = { - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_COMMA] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [215] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(700), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(711), [sym_comment] = ACTIONS(119), }, [216] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(219), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(709), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [217] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(220), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20037,29 +20114,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(713), + [anon_sym_RBRACK] = ACTIONS(709), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [217] = { - [sym__expression] = STATE(221), + [218] = { + [sym__expression] = STATE(222), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20075,126 +20152,126 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [218] = { - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [219] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(708), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(715), [sym_comment] = ACTIONS(119), }, [220] = { - [anon_sym_LPAREN] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(717), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [221] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(719), [sym_comment] = ACTIONS(119), }, [222] = { - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(721), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [223] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(221), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_COMMA] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(723), + [sym_comment] = ACTIONS(119), + }, + [224] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(222), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20210,41 +20287,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(717), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [224] = { - [aux_sym_parameter_type_list_repeat1] = STATE(230), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [225] = { - [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_COMMA] = ACTIONS(720), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(720), + [aux_sym_parameter_type_list_repeat1] = STATE(231), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(727), [sym_comment] = ACTIONS(119), }, [226] = { - [sym__type_specifier] = STATE(266), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(729), + [sym_comment] = ACTIONS(119), + }, + [227] = { + [sym__type_specifier] = STATE(267), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -20260,41 +20337,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [227] = { - [sym__declarator] = STATE(237), - [sym__abstract_declarator] = STATE(238), + [228] = { + [sym__declarator] = STATE(238), + [sym__abstract_declarator] = STATE(239), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [228] = { - [anon_sym_RPAREN] = ACTIONS(728), + [229] = { + [anon_sym_RPAREN] = ACTIONS(737), [sym_comment] = ACTIONS(119), }, - [229] = { - [sym__declaration_specifiers] = STATE(226), + [230] = { + [sym__declaration_specifiers] = STATE(227), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(227), + [sym__type_specifier] = STATE(228), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_parameter_declaration] = STATE(233), + [sym_parameter_declaration] = STATE(234), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(739), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -20313,25 +20390,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [230] = { - [anon_sym_COMMA] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(734), + [231] = { + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(119), }, - [231] = { - [sym__declaration_specifiers] = STATE(226), + [232] = { + [sym__declaration_specifiers] = STATE(227), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(227), + [sym__type_specifier] = STATE(228), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_parameter_declaration] = STATE(232), + [sym_parameter_declaration] = STATE(233), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_DOT_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(745), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -20350,72 +20427,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [232] = { - [anon_sym_COMMA] = ACTIONS(738), - [anon_sym_RPAREN] = ACTIONS(738), - [sym_comment] = ACTIONS(119), - }, [233] = { - [anon_sym_COMMA] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [sym_comment] = ACTIONS(119), }, [234] = { - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), [sym_comment] = ACTIONS(119), }, [235] = { - [sym__declarator] = STATE(262), - [sym__abstract_declarator] = STATE(263), - [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), - [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_COMMA] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(751), [sym_comment] = ACTIONS(119), }, [236] = { - [sym__declarator] = STATE(259), - [sym__abstract_declarator] = STATE(260), + [sym__declarator] = STATE(263), + [sym__abstract_declarator] = STATE(264), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [237] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(264), + [sym__declarator] = STATE(260), + [sym__abstract_declarator] = STATE(261), + [sym_pointer_declarator] = STATE(30), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_function_declarator] = STATE(30), + [sym_abstract_function_declarator] = STATE(211), + [sym_array_declarator] = STATE(30), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [238] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(271), [sym_comment] = ACTIONS(119), }, [239] = { + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(699), + [sym_comment] = ACTIONS(119), + }, + [240] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(245), + [sym__expression] = STATE(246), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20431,81 +20508,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(249), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(748), + [aux_sym_array_declarator_repeat1] = STATE(250), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(757), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [240] = { - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_SEMI] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_COLON] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [241] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(759), [sym_comment] = ACTIONS(119), }, [242] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(245), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(757), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [243] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(246), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20521,29 +20598,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(752), - [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(757), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [243] = { - [sym__expression] = STATE(247), + [244] = { + [sym__expression] = STATE(248), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20559,138 +20636,138 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [244] = { - [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_COMMA] = ACTIONS(754), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(754), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_COLON] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [245] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COLON] = ACTIONS(763), [sym_comment] = ACTIONS(119), }, [246] = { - [anon_sym_LPAREN] = ACTIONS(758), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(758), - [anon_sym_EQ] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(758), - [anon_sym_COLON] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(765), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [247] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_COMMA] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_COLON] = ACTIONS(767), [sym_comment] = ACTIONS(119), }, [248] = { - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(769), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [249] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(247), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(771), + [sym_comment] = ACTIONS(119), + }, + [250] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(248), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20706,55 +20783,55 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(765), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [250] = { - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_COLON] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [251] = { - [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(773), [sym_comment] = ACTIONS(119), }, [252] = { - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_COLON] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(775), [sym_comment] = ACTIONS(119), }, [253] = { + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_COMMA] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(777), + [sym_comment] = ACTIONS(119), + }, + [254] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(215), + [sym__expression] = STATE(216), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20770,77 +20847,77 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(258), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(698), + [aux_sym_array_declarator_repeat1] = STATE(259), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(707), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [254] = { - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [255] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(779), [sym_comment] = ACTIONS(119), }, [256] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(215), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(707), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [257] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(216), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20856,29 +20933,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(772), - [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(781), + [anon_sym_RBRACK] = ACTIONS(707), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [257] = { - [sym__expression] = STATE(219), + [258] = { + [sym__expression] = STATE(220), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20894,25 +20971,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [258] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(219), + [259] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(220), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -20928,171 +21005,171 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(709), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [259] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(774), - [anon_sym_COLON] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [260] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(776), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(783), [sym_comment] = ACTIONS(119), }, [261] = { - [sym__declarator] = STATE(259), - [sym__abstract_declarator] = STATE(260), - [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), - [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(699), [sym_comment] = ACTIONS(119), }, [262] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(264), + [sym__declarator] = STATE(260), + [sym__abstract_declarator] = STATE(261), + [sym_pointer_declarator] = STATE(30), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_function_declarator] = STATE(30), + [sym_abstract_function_declarator] = STATE(211), + [sym_array_declarator] = STATE(30), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [263] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(271), [sym_comment] = ACTIONS(119), }, [264] = { - [anon_sym_LPAREN] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(699), [sym_comment] = ACTIONS(119), }, [265] = { - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_COMMA] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(784), - [anon_sym_LBRACK] = ACTIONS(784), - [anon_sym_EQ] = ACTIONS(784), - [anon_sym_LBRACE] = ACTIONS(784), - [anon_sym_COLON] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(791), [sym_comment] = ACTIONS(119), }, [266] = { - [sym__declarator] = STATE(267), - [sym__abstract_declarator] = STATE(268), - [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), - [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(793), [sym_comment] = ACTIONS(119), }, [267] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(264), + [sym__declarator] = STATE(268), + [sym__abstract_declarator] = STATE(269), + [sym_pointer_declarator] = STATE(30), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_function_declarator] = STATE(30), + [sym_abstract_function_declarator] = STATE(211), + [sym_array_declarator] = STATE(30), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [268] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(271), [sym_comment] = ACTIONS(119), }, [269] = { - [sym__type_specifier] = STATE(271), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(699), + [sym_comment] = ACTIONS(119), + }, + [270] = { + [sym__type_specifier] = STATE(272), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), [sym_macro_type_specifier] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), [anon_sym_unsigned] = ACTIONS(137), [anon_sym_long] = ACTIONS(137), [anon_sym_short] = ACTIONS(137), [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [sym_identifier] = ACTIONS(788), - [sym_comment] = ACTIONS(119), - }, - [270] = { - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(188), + [sym_identifier] = ACTIONS(797), [sym_comment] = ACTIONS(119), }, [271] = { - [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_RPAREN] = ACTIONS(190), [sym_comment] = ACTIONS(119), }, [272] = { - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_COLON] = ACTIONS(794), - [sym_identifier] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(801), [sym_comment] = ACTIONS(119), }, [273] = { + [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(119), + }, + [274] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(278), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym_struct_specifier_repeat1] = STATE(436), - [anon_sym_RBRACE] = ACTIONS(798), + [aux_sym_struct_specifier_repeat1] = STATE(437), + [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -21105,31 +21182,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [274] = { - [anon_sym_LPAREN] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_LBRACK] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_COLON] = ACTIONS(800), - [sym_identifier] = ACTIONS(804), + [275] = { + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_COLON] = ACTIONS(809), + [sym_identifier] = ACTIONS(813), [sym_comment] = ACTIONS(119), }, - [275] = { + [276] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(278), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym_struct_specifier_repeat1] = STATE(280), - [anon_sym_RBRACE] = ACTIONS(806), + [aux_sym_struct_specifier_repeat1] = STATE(281), + [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -21142,46 +21219,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [276] = { - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_SEMI] = ACTIONS(808), - [anon_sym_STAR] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), + [277] = { + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(817), + [sym_identifier] = ACTIONS(819), [sym_comment] = ACTIONS(119), }, - [277] = { - [sym__declarator] = STATE(432), + [278] = { + [sym__declarator] = STATE(433), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(816), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(823), + [anon_sym_COLON] = ACTIONS(825), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [278] = { - [anon_sym_RBRACE] = ACTIONS(818), - [anon_sym_const] = ACTIONS(820), - [anon_sym_restrict] = ACTIONS(820), - [anon_sym_volatile] = ACTIONS(820), - [anon_sym_unsigned] = ACTIONS(820), - [anon_sym_long] = ACTIONS(820), - [anon_sym_short] = ACTIONS(820), - [anon_sym_enum] = ACTIONS(820), - [anon_sym_struct] = ACTIONS(820), - [anon_sym_union] = ACTIONS(820), - [sym_identifier] = ACTIONS(822), + [279] = { + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_const] = ACTIONS(829), + [anon_sym_restrict] = ACTIONS(829), + [anon_sym_volatile] = ACTIONS(829), + [anon_sym_unsigned] = ACTIONS(829), + [anon_sym_long] = ACTIONS(829), + [anon_sym_short] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(829), + [anon_sym_struct] = ACTIONS(829), + [anon_sym_union] = ACTIONS(829), + [sym_identifier] = ACTIONS(831), [sym_comment] = ACTIONS(119), }, - [279] = { - [sym_type_qualifier] = STATE(204), - [sym__type_specifier] = STATE(283), + [280] = { + [sym_type_qualifier] = STATE(205), + [sym__type_specifier] = STATE(284), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -21200,18 +21277,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [280] = { + [281] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(282), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -21224,69 +21301,69 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [281] = { - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(826), - [sym_identifier] = ACTIONS(828), - [sym_comment] = ACTIONS(119), - }, [282] = { - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_const] = ACTIONS(832), - [anon_sym_restrict] = ACTIONS(832), - [anon_sym_volatile] = ACTIONS(832), - [anon_sym_unsigned] = ACTIONS(832), - [anon_sym_long] = ACTIONS(832), - [anon_sym_short] = ACTIONS(832), - [anon_sym_enum] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(832), - [anon_sym_union] = ACTIONS(832), - [sym_identifier] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(835), + [sym_identifier] = ACTIONS(837), [sym_comment] = ACTIONS(119), }, [283] = { - [sym__declarator] = STATE(287), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_const] = ACTIONS(841), + [anon_sym_restrict] = ACTIONS(841), + [anon_sym_volatile] = ACTIONS(841), + [anon_sym_unsigned] = ACTIONS(841), + [anon_sym_long] = ACTIONS(841), + [anon_sym_short] = ACTIONS(841), + [anon_sym_enum] = ACTIONS(841), + [anon_sym_struct] = ACTIONS(841), + [anon_sym_union] = ACTIONS(841), + [sym_identifier] = ACTIONS(843), + [sym_comment] = ACTIONS(119), + }, + [284] = { + [sym__declarator] = STATE(288), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(838), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(823), + [anon_sym_COLON] = ACTIONS(847), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [284] = { - [anon_sym_RBRACE] = ACTIONS(840), - [anon_sym_const] = ACTIONS(842), - [anon_sym_restrict] = ACTIONS(842), - [anon_sym_volatile] = ACTIONS(842), - [anon_sym_unsigned] = ACTIONS(842), - [anon_sym_long] = ACTIONS(842), - [anon_sym_short] = ACTIONS(842), - [anon_sym_enum] = ACTIONS(842), - [anon_sym_struct] = ACTIONS(842), - [anon_sym_union] = ACTIONS(842), - [sym_identifier] = ACTIONS(844), + [285] = { + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_const] = ACTIONS(851), + [anon_sym_restrict] = ACTIONS(851), + [anon_sym_volatile] = ACTIONS(851), + [anon_sym_unsigned] = ACTIONS(851), + [anon_sym_long] = ACTIONS(851), + [anon_sym_short] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_union] = ACTIONS(851), + [sym_identifier] = ACTIONS(853), [sym_comment] = ACTIONS(119), }, - [285] = { - [sym__declarator] = STATE(259), + [286] = { + [sym__declarator] = STATE(260), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(814), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(823), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [286] = { - [sym__expression] = STATE(428), + [287] = { + [sym__expression] = STATE(429), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21302,57 +21379,57 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [287] = { - [aux_sym_struct_declaration_repeat1] = STATE(291), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_COLON] = ACTIONS(864), + [288] = { + [aux_sym_struct_declaration_repeat1] = STATE(292), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(873), [sym_comment] = ACTIONS(119), }, - [288] = { - [sym__declarator] = STATE(427), + [289] = { + [sym__declarator] = STATE(428), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(814), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(823), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [289] = { - [anon_sym_RBRACE] = ACTIONS(866), - [anon_sym_const] = ACTIONS(868), - [anon_sym_restrict] = ACTIONS(868), - [anon_sym_volatile] = ACTIONS(868), - [anon_sym_unsigned] = ACTIONS(868), - [anon_sym_long] = ACTIONS(868), - [anon_sym_short] = ACTIONS(868), - [anon_sym_enum] = ACTIONS(868), - [anon_sym_struct] = ACTIONS(868), - [anon_sym_union] = ACTIONS(868), - [sym_identifier] = ACTIONS(870), + [290] = { + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_const] = ACTIONS(877), + [anon_sym_restrict] = ACTIONS(877), + [anon_sym_volatile] = ACTIONS(877), + [anon_sym_unsigned] = ACTIONS(877), + [anon_sym_long] = ACTIONS(877), + [anon_sym_short] = ACTIONS(877), + [anon_sym_enum] = ACTIONS(877), + [anon_sym_struct] = ACTIONS(877), + [anon_sym_union] = ACTIONS(877), + [sym_identifier] = ACTIONS(879), [sym_comment] = ACTIONS(119), }, - [290] = { - [sym__expression] = STATE(425), + [291] = { + [sym__expression] = STATE(426), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21368,54 +21445,54 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [291] = { - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_COLON] = ACTIONS(876), + [292] = { + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(885), [sym_comment] = ACTIONS(119), }, - [292] = { - [sym__declarator] = STATE(424), + [293] = { + [sym__declarator] = STATE(425), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(814), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(823), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [293] = { - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_const] = ACTIONS(880), - [anon_sym_restrict] = ACTIONS(880), - [anon_sym_volatile] = ACTIONS(880), - [anon_sym_unsigned] = ACTIONS(880), - [anon_sym_long] = ACTIONS(880), - [anon_sym_short] = ACTIONS(880), - [anon_sym_enum] = ACTIONS(880), - [anon_sym_struct] = ACTIONS(880), - [anon_sym_union] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), + [294] = { + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_const] = ACTIONS(889), + [anon_sym_restrict] = ACTIONS(889), + [anon_sym_volatile] = ACTIONS(889), + [anon_sym_unsigned] = ACTIONS(889), + [anon_sym_long] = ACTIONS(889), + [anon_sym_short] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(889), + [anon_sym_struct] = ACTIONS(889), + [anon_sym_union] = ACTIONS(889), + [sym_identifier] = ACTIONS(891), [sym_comment] = ACTIONS(119), }, - [294] = { - [sym__expression] = STATE(301), + [295] = { + [sym__expression] = STATE(302), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21431,23 +21508,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [295] = { + [296] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -21470,12 +21547,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(422), + [sym_type_name] = STATE(423), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -21485,55 +21562,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [296] = { - [sym__expression] = STATE(417), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [297] = { - [sym__expression] = STATE(416), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21549,24 +21593,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [298] = { - [sym__expression] = STATE(415), + [sym__expression] = STATE(417), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21582,24 +21626,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [299] = { - [sym__expression] = STATE(414), + [sym__expression] = STATE(416), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21615,24 +21659,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [300] = { - [sym__expression] = STATE(329), + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21648,78 +21692,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [301] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), - [sym_comment] = ACTIONS(119), - }, - [302] = { - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_const] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [sym_identifier] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [303] = { - [sym__expression] = STATE(72), + [301] = { + [sym__expression] = STATE(330), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21735,24 +21725,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(119), + }, + [302] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [303] = { + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_const] = ACTIONS(927), + [anon_sym_restrict] = ACTIONS(927), + [anon_sym_volatile] = ACTIONS(927), + [anon_sym_unsigned] = ACTIONS(927), + [anon_sym_long] = ACTIONS(927), + [anon_sym_short] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_union] = ACTIONS(927), + [sym_identifier] = ACTIONS(929), [sym_comment] = ACTIONS(119), }, [304] = { - [sym__expression] = STATE(324), + [sym__expression] = STATE(72), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21768,20 +21812,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [305] = { @@ -21801,24 +21845,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [306] = { - [sym__expression] = STATE(323), + [sym__expression] = STATE(326), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21834,24 +21878,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [307] = { - [sym__expression] = STATE(322), + [sym__expression] = STATE(324), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21867,24 +21911,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [308] = { - [sym__expression] = STATE(321), + [sym__expression] = STATE(323), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21900,24 +21944,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [309] = { - [sym__expression] = STATE(320), + [sym__expression] = STATE(322), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21933,24 +21977,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [310] = { - [sym__expression] = STATE(319), + [sym__expression] = STATE(321), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21966,24 +22010,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [311] = { - [sym__expression] = STATE(318), + [sym__expression] = STATE(320), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -21999,24 +22043,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [312] = { - [sym__expression] = STATE(317), + [sym__expression] = STATE(319), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -22032,24 +22076,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [313] = { - [sym__expression] = STATE(316), + [sym__expression] = STATE(318), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -22065,24 +22109,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [314] = { - [sym__expression] = STATE(315), + [sym__expression] = STATE(317), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -22098,464 +22142,497 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [315] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [316] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [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(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [317] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(467), + [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(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [318] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [319] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [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(917), + [anon_sym_GT] = ACTIONS(917), + [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(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [320] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [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(905), + [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(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [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(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [321] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [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(905), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [322] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [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(905), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [323] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [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(905), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [324] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [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(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [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(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [325] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(922), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(485), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [326] = { - [sym__expression] = STATE(327), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(931), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [327] = { + [sym__expression] = STATE(328), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -22571,63 +22648,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [327] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [328] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [328] = { + [329] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -22650,12 +22727,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(330), + [sym_type_name] = STATE(331), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -22665,66 +22742,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [329] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [330] = { - [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [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(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [331] = { - [sym__expression] = STATE(332), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_comment] = ACTIONS(119), + }, + [332] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -22740,145 +22817,145 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [332] = { - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_COLON] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(934), - [anon_sym_STAR_EQ] = ACTIONS(934), - [anon_sym_SLASH_EQ] = ACTIONS(934), - [anon_sym_PERCENT_EQ] = ACTIONS(934), - [anon_sym_PLUS_EQ] = ACTIONS(934), - [anon_sym_DASH_EQ] = ACTIONS(934), - [anon_sym_LT_LT_EQ] = ACTIONS(934), - [anon_sym_GT_GT_EQ] = ACTIONS(934), - [anon_sym_AMP_EQ] = ACTIONS(934), - [anon_sym_CARET_EQ] = ACTIONS(934), - [anon_sym_PIPE_EQ] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_PIPE_PIPE] = ACTIONS(934), - [anon_sym_AMP_AMP] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_LT_LT] = ACTIONS(936), - [anon_sym_GT_GT] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_PERCENT] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(935), + [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(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [333] = { - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_EQ] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_QMARK] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PERCENT_EQ] = ACTIONS(938), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_LT_LT_EQ] = ACTIONS(938), - [anon_sym_GT_GT_EQ] = ACTIONS(938), - [anon_sym_AMP_EQ] = ACTIONS(938), - [anon_sym_CARET_EQ] = ACTIONS(938), - [anon_sym_PIPE_EQ] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_PIPE_PIPE] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_GT_GT] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(938), - [anon_sym_DASH_GT] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PERCENT_EQ] = ACTIONS(943), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_LT_LT_EQ] = ACTIONS(943), + [anon_sym_GT_GT_EQ] = ACTIONS(943), + [anon_sym_AMP_EQ] = ACTIONS(943), + [anon_sym_CARET_EQ] = ACTIONS(943), + [anon_sym_PIPE_EQ] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [334] = { + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PERCENT_EQ] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_CARET_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [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(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), + [sym_comment] = ACTIONS(119), + }, + [335] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -22901,12 +22978,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(420), + [sym_type_name] = STATE(421), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -22916,22 +22993,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, - [335] = { - [sym__expression] = STATE(417), + [336] = { + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -22947,24 +23024,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [336] = { - [sym__expression] = STATE(418), + [337] = { + [sym__expression] = STATE(419), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -22980,24 +23057,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [337] = { - [sym__expression] = STATE(416), + [338] = { + [sym__expression] = STATE(417), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23013,24 +23090,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [338] = { - [sym__expression] = STATE(415), + [339] = { + [sym__expression] = STATE(416), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23046,24 +23123,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [339] = { - [sym__expression] = STATE(414), + [340] = { + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23079,24 +23156,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [340] = { - [sym__expression] = STATE(385), + [341] = { + [sym__expression] = STATE(386), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23112,92 +23189,92 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [341] = { - [sym_identifier] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [342] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [sym_identifier] = ACTIONS(953), [sym_comment] = ACTIONS(119), }, [343] = { - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [344] = { - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), [sym_comment] = ACTIONS(119), }, [345] = { - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(987), [sym_comment] = ACTIONS(119), }, [346] = { - [sym_designator] = STATE(348), - [anon_sym_LBRACK] = ACTIONS(352), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(989), [sym_comment] = ACTIONS(119), }, [347] = { - [sym__expression] = STATE(349), + [sym_designator] = STATE(349), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(371), + [sym_comment] = ACTIONS(119), + }, + [348] = { + [sym__expression] = STATE(350), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23213,77 +23290,77 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(350), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [348] = { - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), + [sym_initializer_list] = STATE(351), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [349] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), [sym_comment] = ACTIONS(119), }, [350] = { - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [351] = { + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [sym_comment] = ACTIONS(119), + }, + [352] = { [sym__expression] = STATE(72), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), @@ -23300,24 +23377,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [352] = { - [sym__expression] = STATE(372), + [353] = { + [sym__expression] = STATE(373), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23333,24 +23410,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [353] = { - [sym__expression] = STATE(373), + [354] = { + [sym__expression] = STATE(374), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23366,24 +23443,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [354] = { - [sym__expression] = STATE(371), + [355] = { + [sym__expression] = STATE(372), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23399,24 +23476,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [355] = { - [sym__expression] = STATE(370), + [356] = { + [sym__expression] = STATE(371), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23432,24 +23509,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [356] = { - [sym__expression] = STATE(369), + [357] = { + [sym__expression] = STATE(370), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23465,24 +23542,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [357] = { - [sym__expression] = STATE(368), + [358] = { + [sym__expression] = STATE(369), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23498,24 +23575,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [358] = { - [sym__expression] = STATE(367), + [359] = { + [sym__expression] = STATE(368), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23531,24 +23608,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [359] = { - [sym__expression] = STATE(366), + [360] = { + [sym__expression] = STATE(367), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23564,24 +23641,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [360] = { - [sym__expression] = STATE(365), + [361] = { + [sym__expression] = STATE(366), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23597,24 +23674,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [361] = { - [sym__expression] = STATE(364), + [362] = { + [sym__expression] = STATE(365), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23630,24 +23707,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [362] = { - [sym__expression] = STATE(363), + [363] = { + [sym__expression] = STATE(364), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -23663,474 +23740,474 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [363] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [364] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_RBRACE] = 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(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [365] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(467), + [anon_sym_RBRACE] = 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(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [366] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [367] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [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(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [368] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_RBRACE] = 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(965), + [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(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [369] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_RBRACE] = 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(965), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [370] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_RBRACE] = 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(965), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [371] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_RBRACE] = 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(965), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [372] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_RBRACE] = 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(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [373] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(988), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [374] = { - [sym__expression] = STATE(375), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(997), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [375] = { + [sym__expression] = STATE(376), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24146,65 +24223,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [375] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [376] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [376] = { - [sym__expression] = STATE(349), + [377] = { + [sym__expression] = STATE(350), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24220,128 +24297,128 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(350), - [sym_designator] = STATE(345), - [aux_sym__initializer_list_contents_repeat1] = STATE(379), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_LBRACK] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(364), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [377] = { - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_RBRACK] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_COLON] = ACTIONS(992), - [anon_sym_QMARK] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PERCENT_EQ] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_LT_LT_EQ] = ACTIONS(992), - [anon_sym_GT_GT_EQ] = ACTIONS(992), - [anon_sym_AMP_EQ] = ACTIONS(992), - [anon_sym_CARET_EQ] = ACTIONS(992), - [anon_sym_PIPE_EQ] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE_PIPE] = ACTIONS(992), - [anon_sym_AMP_AMP] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_CARET] = ACTIONS(994), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(994), - [anon_sym_GT] = ACTIONS(994), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_GT_GT] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_SLASH] = ACTIONS(994), - [anon_sym_PERCENT] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_DASH_GT] = ACTIONS(992), + [sym_initializer_list] = STATE(351), + [sym_designator] = STATE(346), + [aux_sym__initializer_list_contents_repeat1] = STATE(380), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(371), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [378] = { - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_RBRACK] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_COLON] = ACTIONS(996), - [anon_sym_QMARK] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PERCENT_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_LT_LT_EQ] = ACTIONS(996), - [anon_sym_GT_GT_EQ] = ACTIONS(996), - [anon_sym_AMP_EQ] = ACTIONS(996), - [anon_sym_CARET_EQ] = ACTIONS(996), - [anon_sym_PIPE_EQ] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(996), - [anon_sym_BANG_EQ] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_LT_EQ] = ACTIONS(996), - [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_LT] = ACTIONS(998), - [anon_sym_GT_GT] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DASH_GT] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_PERCENT_EQ] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_GT_EQ] = ACTIONS(1001), + [anon_sym_AMP_EQ] = ACTIONS(1001), + [anon_sym_CARET_EQ] = ACTIONS(1001), + [anon_sym_PIPE_EQ] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_DASH_GT] = ACTIONS(1001), [sym_comment] = ACTIONS(119), }, [379] = { - [sym_designator] = STATE(348), - [anon_sym_LBRACK] = ACTIONS(352), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(364), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_COMMA] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_STAR_EQ] = ACTIONS(1005), + [anon_sym_SLASH_EQ] = ACTIONS(1005), + [anon_sym_PERCENT_EQ] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_GT_EQ] = ACTIONS(1005), + [anon_sym_AMP_EQ] = ACTIONS(1005), + [anon_sym_CARET_EQ] = ACTIONS(1005), + [anon_sym_PIPE_EQ] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_DASH_GT] = ACTIONS(1005), [sym_comment] = ACTIONS(119), }, [380] = { - [sym__expression] = STATE(381), + [sym_designator] = STATE(349), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(371), + [sym_comment] = ACTIONS(119), + }, + [381] = { + [sym__expression] = STATE(382), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24357,77 +24434,77 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [381] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [sym_initializer_list] = STATE(383), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [382] = { - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [383] = { - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), [sym_comment] = ACTIONS(119), }, [384] = { + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1013), + [sym_comment] = ACTIONS(119), + }, + [385] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -24450,12 +24527,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(386), + [sym_type_name] = STATE(387), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -24465,67 +24542,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [385] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [386] = { - [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_RBRACE] = 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(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [387] = { - [sym__expression] = STATE(332), + [anon_sym_RPAREN] = ACTIONS(1015), + [sym_comment] = ACTIONS(119), + }, + [388] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24541,101 +24618,101 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [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(1017), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [388] = { - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_RBRACK] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_COLON] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1012), - [anon_sym_STAR_EQ] = ACTIONS(1012), - [anon_sym_SLASH_EQ] = ACTIONS(1012), - [anon_sym_PERCENT_EQ] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1012), - [anon_sym_DASH_EQ] = ACTIONS(1012), - [anon_sym_LT_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_GT_EQ] = ACTIONS(1012), - [anon_sym_AMP_EQ] = ACTIONS(1012), - [anon_sym_CARET_EQ] = ACTIONS(1012), - [anon_sym_PIPE_EQ] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_PIPE_PIPE] = ACTIONS(1012), - [anon_sym_AMP_AMP] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_CARET] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_LT_LT] = ACTIONS(1014), - [anon_sym_GT_GT] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DASH_GT] = ACTIONS(1012), + [389] = { + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1021), + [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(1021), + [anon_sym_DASH_GT] = ACTIONS(1021), [sym_comment] = ACTIONS(119), }, - [389] = { + [390] = { [sym__expression] = STATE(72), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), @@ -24652,24 +24729,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [390] = { - [sym__expression] = STATE(410), + [391] = { + [sym__expression] = STATE(411), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24685,24 +24762,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [391] = { - [sym__expression] = STATE(411), + [392] = { + [sym__expression] = STATE(412), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24718,24 +24795,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [392] = { - [sym__expression] = STATE(409), + [393] = { + [sym__expression] = STATE(410), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24751,24 +24828,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [393] = { - [sym__expression] = STATE(408), + [394] = { + [sym__expression] = STATE(409), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24784,24 +24861,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [394] = { - [sym__expression] = STATE(407), + [395] = { + [sym__expression] = STATE(408), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24817,24 +24894,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [395] = { - [sym__expression] = STATE(406), + [396] = { + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24850,24 +24927,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [396] = { - [sym__expression] = STATE(405), + [397] = { + [sym__expression] = STATE(406), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24883,24 +24960,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [397] = { - [sym__expression] = STATE(404), + [398] = { + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24916,24 +24993,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [398] = { - [sym__expression] = STATE(403), + [399] = { + [sym__expression] = STATE(404), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24949,24 +25026,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [399] = { - [sym__expression] = STATE(402), + [400] = { + [sym__expression] = STATE(403), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -24982,24 +25059,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [400] = { - [sym__expression] = STATE(401), + [401] = { + [sym__expression] = STATE(402), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -25015,464 +25092,464 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [401] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [402] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [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(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [403] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(467), + [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(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [404] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_STAR_EQ] = ACTIONS(469), + [anon_sym_SLASH_EQ] = ACTIONS(469), + [anon_sym_PERCENT_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), + [anon_sym_LT_LT_EQ] = ACTIONS(469), + [anon_sym_GT_GT_EQ] = ACTIONS(469), + [anon_sym_AMP_EQ] = ACTIONS(469), + [anon_sym_CARET_EQ] = ACTIONS(469), + [anon_sym_PIPE_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_CARET] = ACTIONS(471), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [405] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_LT_LT_EQ] = ACTIONS(473), + [anon_sym_GT_GT_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [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(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [406] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [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(657), + [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(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [407] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [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(657), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [408] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [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(657), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [409] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [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(657), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [410] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [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(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [411] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [412] = { - [sym__expression] = STATE(413), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(1025), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [413] = { + [sym__expression] = STATE(414), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -25488,294 +25565,294 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [413] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [414] = { - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_COLON] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_STAR_EQ] = ACTIONS(1018), - [anon_sym_SLASH_EQ] = ACTIONS(1018), - [anon_sym_PERCENT_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1018), - [anon_sym_DASH_EQ] = ACTIONS(1018), - [anon_sym_LT_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_GT_EQ] = ACTIONS(1018), - [anon_sym_AMP_EQ] = ACTIONS(1018), - [anon_sym_CARET_EQ] = ACTIONS(1018), - [anon_sym_PIPE_EQ] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1020), - [anon_sym_PIPE_PIPE] = ACTIONS(1018), - [anon_sym_AMP_AMP] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_CARET] = ACTIONS(1020), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_LT] = ACTIONS(1020), - [anon_sym_GT] = ACTIONS(1020), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_LT_LT] = ACTIONS(1020), - [anon_sym_GT_GT] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_SLASH] = ACTIONS(1020), - [anon_sym_PERCENT] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [415] = { - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_COMMA] = ACTIONS(1022), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_QMARK] = ACTIONS(1022), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PERCENT_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_LT_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_GT_EQ] = ACTIONS(1022), - [anon_sym_AMP_EQ] = ACTIONS(1022), - [anon_sym_CARET_EQ] = ACTIONS(1022), - [anon_sym_PIPE_EQ] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1022), - [anon_sym_AMP_AMP] = ACTIONS(1022), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_CARET] = ACTIONS(1024), - [anon_sym_EQ_EQ] = ACTIONS(1022), - [anon_sym_BANG_EQ] = ACTIONS(1022), - [anon_sym_LT] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1024), - [anon_sym_LT_EQ] = ACTIONS(1022), - [anon_sym_GT_EQ] = ACTIONS(1022), - [anon_sym_LT_LT] = ACTIONS(1024), - [anon_sym_GT_GT] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_SLASH] = ACTIONS(1024), - [anon_sym_PERCENT] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1027), + [anon_sym_STAR_EQ] = ACTIONS(1027), + [anon_sym_SLASH_EQ] = ACTIONS(1027), + [anon_sym_PERCENT_EQ] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1027), + [anon_sym_DASH_EQ] = ACTIONS(1027), + [anon_sym_LT_LT_EQ] = ACTIONS(1027), + [anon_sym_GT_GT_EQ] = ACTIONS(1027), + [anon_sym_AMP_EQ] = ACTIONS(1027), + [anon_sym_CARET_EQ] = ACTIONS(1027), + [anon_sym_PIPE_EQ] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1027), + [anon_sym_BANG_EQ] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1027), + [anon_sym_GT_EQ] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [416] = { - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(1026), - [anon_sym_STAR_EQ] = ACTIONS(1026), - [anon_sym_SLASH_EQ] = ACTIONS(1026), - [anon_sym_PERCENT_EQ] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1026), - [anon_sym_DASH_EQ] = ACTIONS(1026), - [anon_sym_LT_LT_EQ] = ACTIONS(1026), - [anon_sym_GT_GT_EQ] = ACTIONS(1026), - [anon_sym_AMP_EQ] = ACTIONS(1026), - [anon_sym_CARET_EQ] = ACTIONS(1026), - [anon_sym_PIPE_EQ] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1028), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_CARET] = ACTIONS(1028), - [anon_sym_EQ_EQ] = ACTIONS(1026), - [anon_sym_BANG_EQ] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_GT] = ACTIONS(1028), - [anon_sym_LT_EQ] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1028), - [anon_sym_GT_GT] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_SLASH] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_PERCENT] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [417] = { - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PERCENT_EQ] = ACTIONS(1030), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_LT_LT_EQ] = ACTIONS(1030), - [anon_sym_GT_GT_EQ] = ACTIONS(1030), - [anon_sym_AMP_EQ] = ACTIONS(1030), - [anon_sym_CARET_EQ] = ACTIONS(1030), - [anon_sym_PIPE_EQ] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1030), - [anon_sym_AMP_AMP] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1030), - [anon_sym_BANG_EQ] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_LT_EQ] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1030), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_SLASH] = ACTIONS(1032), - [anon_sym_PERCENT] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_STAR_EQ] = ACTIONS(1035), + [anon_sym_SLASH_EQ] = ACTIONS(1035), + [anon_sym_PERCENT_EQ] = ACTIONS(1035), + [anon_sym_PLUS_EQ] = ACTIONS(1035), + [anon_sym_DASH_EQ] = ACTIONS(1035), + [anon_sym_LT_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_GT_EQ] = ACTIONS(1035), + [anon_sym_AMP_EQ] = ACTIONS(1035), + [anon_sym_CARET_EQ] = ACTIONS(1035), + [anon_sym_PIPE_EQ] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [418] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(1034), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [419] = { - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(1043), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [420] = { - [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_DOT] = ACTIONS(1045), [sym_comment] = ACTIONS(119), }, [421] = { - [sym__expression] = STATE(332), + [anon_sym_RPAREN] = ACTIONS(1047), + [sym_comment] = ACTIONS(119), + }, + [422] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -25791,30 +25868,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [422] = { - [anon_sym_RPAREN] = ACTIONS(1040), + [423] = { + [anon_sym_RPAREN] = ACTIONS(1049), [sym_comment] = ACTIONS(119), }, - [423] = { - [sym__expression] = STATE(332), + [424] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -25830,160 +25907,160 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [424] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_COLON] = ACTIONS(1042), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [425] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(1051), [sym_comment] = ACTIONS(119), }, [426] = { - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [427] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_const] = ACTIONS(1057), + [anon_sym_restrict] = ACTIONS(1057), + [anon_sym_volatile] = ACTIONS(1057), + [anon_sym_unsigned] = ACTIONS(1057), + [anon_sym_long] = ACTIONS(1057), + [anon_sym_short] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1057), + [anon_sym_struct] = ACTIONS(1057), + [anon_sym_union] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), [sym_comment] = ACTIONS(119), }, [428] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(1061), [sym_comment] = ACTIONS(119), }, [429] = { - [sym__declarator] = STATE(259), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [430] = { + [sym__declarator] = STATE(260), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(248), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(255), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [430] = { - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1058), + [431] = { + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_const] = ACTIONS(1065), + [anon_sym_restrict] = ACTIONS(1065), + [anon_sym_volatile] = ACTIONS(1065), + [anon_sym_unsigned] = ACTIONS(1065), + [anon_sym_long] = ACTIONS(1065), + [anon_sym_short] = ACTIONS(1065), + [anon_sym_enum] = ACTIONS(1065), + [anon_sym_struct] = ACTIONS(1065), + [anon_sym_union] = ACTIONS(1065), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(119), }, - [431] = { - [sym__expression] = STATE(434), + [432] = { + [sym__expression] = STATE(435), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -25999,100 +26076,100 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [432] = { - [aux_sym_struct_declaration_repeat1] = STATE(433), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_COLON] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [433] = { - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(864), + [aux_sym_struct_declaration_repeat1] = STATE(434), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(847), [sym_comment] = ACTIONS(119), }, [434] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_COLON] = ACTIONS(873), [sym_comment] = ACTIONS(119), }, [435] = { - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_COLON] = ACTIONS(1060), - [sym_identifier] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [436] = { + [anon_sym_LPAREN] = ACTIONS(1069), + [anon_sym_COMMA] = ACTIONS(1069), + [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_COLON] = ACTIONS(1069), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(119), + }, + [437] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(282), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_RBRACE] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26105,19 +26182,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [437] = { + [438] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(278), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym_struct_specifier_repeat1] = STATE(444), - [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_struct_specifier_repeat1] = STATE(445), + [anon_sym_RBRACE] = ACTIONS(1073), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26130,31 +26207,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [438] = { - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_COLON] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1070), + [439] = { + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_COMMA] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1075), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(1075), + [sym_identifier] = ACTIONS(1079), [sym_comment] = ACTIONS(119), }, - [439] = { + [440] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(278), + [sym_struct_declaration] = STATE(279), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym_struct_specifier_repeat1] = STATE(441), - [anon_sym_RBRACE] = ACTIONS(1072), + [aux_sym_struct_specifier_repeat1] = STATE(442), + [anon_sym_RBRACE] = ACTIONS(1081), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26167,29 +26244,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [440] = { - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_COMMA] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1074), - [anon_sym_COLON] = ACTIONS(1074), - [sym_identifier] = ACTIONS(1076), - [sym_comment] = ACTIONS(119), - }, [441] = { + [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(119), + }, + [442] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(282), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1087), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26202,40 +26279,40 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [442] = { - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [sym_identifier] = ACTIONS(1082), - [sym_comment] = ACTIONS(119), - }, [443] = { - [anon_sym_LPAREN] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_COLON] = ACTIONS(1084), - [sym_identifier] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_COLON] = ACTIONS(1089), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(119), }, [444] = { + [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), + [sym_comment] = ACTIONS(119), + }, + [445] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(282), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1081), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26248,81 +26325,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [445] = { - [sym__enum_specifier_contents] = STATE(457), - [sym_enumerator] = STATE(450), - [sym_identifier] = ACTIONS(1088), - [sym_comment] = ACTIONS(119), - }, [446] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1090), - [sym_identifier] = ACTIONS(1094), + [sym__enum_specifier_contents] = STATE(458), + [sym_enumerator] = STATE(451), + [sym_identifier] = ACTIONS(1097), [sym_comment] = ACTIONS(119), }, [447] = { - [sym__enum_specifier_contents] = STATE(449), - [sym_enumerator] = STATE(450), - [sym_identifier] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COLON] = ACTIONS(1099), + [sym_identifier] = ACTIONS(1103), [sym_comment] = ACTIONS(119), }, [448] = { - [anon_sym_COMMA] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1096), + [sym__enum_specifier_contents] = STATE(450), + [sym_enumerator] = STATE(451), + [sym_identifier] = ACTIONS(1097), [sym_comment] = ACTIONS(119), }, [449] = { - [anon_sym_COMMA] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(1105), + [anon_sym_EQ] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1105), [sym_comment] = ACTIONS(119), }, [450] = { - [anon_sym_COMMA] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(1111), [sym_comment] = ACTIONS(119), }, [451] = { - [sym_enumerator] = STATE(454), - [anon_sym_RBRACE] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), [sym_comment] = ACTIONS(119), }, [452] = { - [anon_sym_LPAREN] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(1108), - [anon_sym_COLON] = ACTIONS(1108), - [sym_identifier] = ACTIONS(1110), + [sym_enumerator] = STATE(455), + [anon_sym_RBRACE] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1097), [sym_comment] = ACTIONS(119), }, [453] = { - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [sym_identifier] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(1117), + [sym_identifier] = ACTIONS(1119), [sym_comment] = ACTIONS(119), }, [454] = { - [anon_sym_COMMA] = ACTIONS(1116), - [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_COLON] = ACTIONS(1121), + [sym_identifier] = ACTIONS(1123), [sym_comment] = ACTIONS(119), }, [455] = { - [sym__expression] = STATE(456), + [anon_sym_COMMA] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [sym_comment] = ACTIONS(119), + }, + [456] = { + [sym__expression] = STATE(457), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -26338,87 +26415,87 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [456] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [457] = { - [anon_sym_COMMA] = ACTIONS(1120), - [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [458] = { - [sym_enumerator] = STATE(454), - [anon_sym_RBRACE] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1131), [sym_comment] = ACTIONS(119), }, [459] = { - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_COLON] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), + [sym_enumerator] = STATE(455), + [anon_sym_RBRACE] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1097), [sym_comment] = ACTIONS(119), }, [460] = { - [sym__expression] = STATE(332), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1135), + [sym_comment] = ACTIONS(119), + }, + [461] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -26434,62 +26511,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(935), + [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(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [461] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(690), + [462] = { + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(699), [sym_comment] = ACTIONS(119), }, - [462] = { + [463] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -26512,12 +26589,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(464), + [sym_type_name] = STATE(465), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26527,66 +26604,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [463] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [464] = { - [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [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(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [465] = { - [sym__expression] = STATE(332), + [anon_sym_RPAREN] = ACTIONS(1141), + [sym_comment] = ACTIONS(119), + }, + [466] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -26602,60 +26679,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(935), + [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(1143), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(349), + [anon_sym_PLUS_PLUS] = ACTIONS(349), + [anon_sym_sizeof] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [466] = { - [anon_sym_RPAREN] = ACTIONS(1138), + [467] = { + [anon_sym_RPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(119), }, - [467] = { - [sym__expression] = STATE(332), + [468] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -26671,30 +26748,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(327), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [468] = { - [anon_sym_RPAREN] = ACTIONS(1140), + [469] = { + [anon_sym_RPAREN] = ACTIONS(1149), [sym_comment] = ACTIONS(119), }, - [469] = { - [sym__expression] = STATE(332), + [470] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -26710,25 +26787,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [470] = { + [471] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -26751,12 +26828,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(472), + [sym_type_name] = STATE(473), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26766,66 +26843,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [471] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [472] = { - [anon_sym_RPAREN] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [473] = { - [sym__expression] = STATE(332), + [anon_sym_RPAREN] = ACTIONS(1151), + [sym_comment] = ACTIONS(119), + }, + [474] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -26841,60 +26918,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(935), + [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(1153), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [474] = { - [anon_sym_RPAREN] = ACTIONS(1148), + [475] = { + [anon_sym_RPAREN] = ACTIONS(1157), [sym_comment] = ACTIONS(119), }, - [475] = { - [sym__expression] = STATE(332), + [476] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -26910,25 +26987,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [476] = { + [477] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -26951,12 +27028,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(478), + [sym_type_name] = STATE(479), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -26966,66 +27043,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [477] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_COLON] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [478] = { - [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [479] = { - [sym__expression] = STATE(332), + [anon_sym_RPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(119), + }, + [480] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27041,60 +27118,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_COLON] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [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(1161), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_sizeof] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [480] = { - [anon_sym_RPAREN] = ACTIONS(1156), + [481] = { + [anon_sym_RPAREN] = ACTIONS(1165), [sym_comment] = ACTIONS(119), }, - [481] = { - [sym__expression] = STATE(332), + [482] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27110,25 +27187,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(327), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [482] = { + [483] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -27151,12 +27228,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(484), + [sym_type_name] = STATE(485), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -27166,67 +27243,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [483] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [484] = { - [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(389), + [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(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [485] = { - [sym__expression] = STATE(332), + [anon_sym_RPAREN] = ACTIONS(1167), + [sym_comment] = ACTIONS(119), + }, + [486] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27242,61 +27319,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(935), + [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(1169), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [486] = { - [anon_sym_RPAREN] = ACTIONS(1164), + [487] = { + [anon_sym_RPAREN] = ACTIONS(1173), [sym_comment] = ACTIONS(119), }, - [487] = { - [sym__expression] = STATE(332), + [488] = { + [sym__expression] = STATE(333), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27312,62 +27389,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_sizeof] = ACTIONS(330), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [488] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_sizeof] = ACTIONS(337), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [489] = { - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), [sym_comment] = ACTIONS(119), }, [490] = { - [sym_declaration] = STATE(506), - [sym__declaration_specifiers] = STATE(507), - [sym_compound_statement] = STATE(508), + [anon_sym_COMMA] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1175), + [sym_comment] = ACTIONS(119), + }, + [491] = { + [sym_declaration] = STATE(507), + [sym__declaration_specifiers] = STATE(508), + [sym_compound_statement] = STATE(509), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(509), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__statement] = STATE(506), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [sym__statement] = STATE(507), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27383,17 +27460,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym__empty_declaration] = STATE(506), + [sym__empty_declaration] = STATE(507), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), - [aux_sym_compound_statement_repeat1] = STATE(511), + [aux_sym_compound_statement_repeat1] = STATE(512), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), [anon_sym_static] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_RBRACE] = ACTIONS(1179), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), [anon_sym_auto] = ACTIONS(131), @@ -27408,170 +27485,170 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1194), - [sym_comment] = ACTIONS(119), - }, - [491] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_POUNDinclude] = ACTIONS(1198), - [anon_sym_POUNDdefine] = ACTIONS(1198), - [anon_sym_POUNDifdef] = ACTIONS(1198), - [anon_sym_POUNDifndef] = ACTIONS(1198), - [anon_sym_POUNDendif] = ACTIONS(1198), - [anon_sym_POUNDelse] = ACTIONS(1198), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_auto] = ACTIONS(1198), - [anon_sym_register] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_restrict] = ACTIONS(1198), - [anon_sym_volatile] = ACTIONS(1198), - [sym_function_specifier] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1203), [sym_comment] = ACTIONS(119), }, [492] = { - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [sym_function_specifier] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1204), - [sym_string_literal] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1206), + [ts_builtin_sym_end] = ACTIONS(1205), + [anon_sym_POUNDinclude] = ACTIONS(1207), + [anon_sym_POUNDdefine] = ACTIONS(1207), + [anon_sym_POUNDifdef] = ACTIONS(1207), + [anon_sym_POUNDifndef] = ACTIONS(1207), + [anon_sym_POUNDendif] = ACTIONS(1207), + [anon_sym_POUNDelse] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1209), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [sym_function_specifier] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1209), [sym_comment] = ACTIONS(119), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(1208), - [anon_sym_POUNDinclude] = ACTIONS(1210), - [anon_sym_POUNDdefine] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_POUNDifdef] = ACTIONS(1210), - [anon_sym_POUNDifndef] = ACTIONS(1210), - [anon_sym_POUNDendif] = ACTIONS(1210), - [anon_sym_POUNDelse] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [sym_function_specifier] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1210), - [sym_char_literal] = ACTIONS(1210), - [sym_string_literal] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym_auto] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_restrict] = ACTIONS(1213), + [anon_sym_volatile] = ACTIONS(1213), + [sym_function_specifier] = ACTIONS(1213), + [anon_sym_unsigned] = ACTIONS(1213), + [anon_sym_long] = ACTIONS(1213), + [anon_sym_short] = ACTIONS(1213), + [anon_sym_enum] = ACTIONS(1213), + [anon_sym_struct] = ACTIONS(1213), + [anon_sym_union] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1213), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_goto] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_sizeof] = ACTIONS(1213), + [sym_number_literal] = ACTIONS(1213), + [sym_char_literal] = ACTIONS(1213), + [sym_string_literal] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1215), [sym_comment] = ACTIONS(119), }, [494] = { - [anon_sym_LPAREN] = ACTIONS(1214), + [ts_builtin_sym_end] = ACTIONS(1217), + [anon_sym_POUNDinclude] = ACTIONS(1219), + [anon_sym_POUNDdefine] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_POUNDifdef] = ACTIONS(1219), + [anon_sym_POUNDifndef] = ACTIONS(1219), + [anon_sym_POUNDendif] = ACTIONS(1219), + [anon_sym_POUNDelse] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [sym_function_specifier] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1219), + [sym_string_literal] = ACTIONS(1219), + [sym_identifier] = ACTIONS(1221), [sym_comment] = ACTIONS(119), }, [495] = { - [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1223), [sym_comment] = ACTIONS(119), }, [496] = { - [sym__expression] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(1225), + [sym_comment] = ACTIONS(119), + }, + [497] = { + [sym__expression] = STATE(660), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27587,46 +27664,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [497] = { - [anon_sym_COLON] = ACTIONS(1218), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [498] = { - [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_COLON] = ACTIONS(1227), [sym_comment] = ACTIONS(119), }, [499] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(568), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(1229), + [sym_comment] = ACTIONS(119), + }, + [500] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(569), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27642,41 +27719,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [500] = { - [anon_sym_LPAREN] = ACTIONS(1236), + [501] = { + [anon_sym_LPAREN] = ACTIONS(1245), [sym_comment] = ACTIONS(119), }, - [501] = { - [sym__expression] = STATE(530), + [502] = { + [sym__expression] = STATE(531), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27692,127 +27769,127 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [502] = { - [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [503] = { - [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1249), [sym_comment] = ACTIONS(119), }, [504] = { - [sym_identifier] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1251), [sym_comment] = ACTIONS(119), }, [505] = { - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [sym_identifier] = ACTIONS(190), + [sym_identifier] = ACTIONS(1253), [sym_comment] = ACTIONS(119), }, [506] = { - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym_auto] = ACTIONS(1250), - [anon_sym_register] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_restrict] = ACTIONS(1250), - [anon_sym_volatile] = ACTIONS(1250), - [sym_function_specifier] = ACTIONS(1250), - [anon_sym_unsigned] = ACTIONS(1250), - [anon_sym_long] = ACTIONS(1250), - [anon_sym_short] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_goto] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_sizeof] = ACTIONS(1250), - [sym_number_literal] = ACTIONS(1250), - [sym_char_literal] = ACTIONS(1250), - [sym_string_literal] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_identifier] = ACTIONS(192), [sym_comment] = ACTIONS(119), }, [507] = { - [sym__type_specifier] = STATE(516), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = 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_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(119), + }, + [508] = { + [sym__type_specifier] = STATE(517), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -27828,130 +27905,130 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [508] = { - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [sym_function_specifier] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1256), - [sym_char_literal] = ACTIONS(1256), - [sym_string_literal] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), + [509] = { + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1265), + [anon_sym_extern] = 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_else] = 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(119), }, - [509] = { - [sym__declarator] = STATE(515), + [510] = { + [sym__declarator] = STATE(516), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), [sym_init_declarator] = STATE(32), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(208), - [anon_sym_STAR] = ACTIONS(270), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_STAR] = ACTIONS(277), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [510] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [511] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [511] = { - [sym_declaration] = STATE(513), - [sym__declaration_specifiers] = STATE(507), - [sym_compound_statement] = STATE(508), + [512] = { + [sym_declaration] = STATE(514), + [sym__declaration_specifiers] = STATE(508), + [sym_compound_statement] = STATE(509), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(509), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__statement] = STATE(513), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [sym__statement] = STATE(514), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -27967,16 +28044,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym__empty_declaration] = STATE(513), + [sym__empty_declaration] = STATE(514), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), [anon_sym_static] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_RBRACE] = ACTIONS(1271), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), [anon_sym_auto] = ACTIONS(131), @@ -27991,342 +28068,342 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1194), - [sym_comment] = ACTIONS(119), - }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [anon_sym_POUNDinclude] = ACTIONS(1266), - [anon_sym_POUNDdefine] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_POUNDifdef] = ACTIONS(1266), - [anon_sym_POUNDifndef] = ACTIONS(1266), - [anon_sym_POUNDendif] = ACTIONS(1266), - [anon_sym_POUNDelse] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [sym_function_specifier] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_long] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_sizeof] = ACTIONS(1266), - [sym_number_literal] = ACTIONS(1266), - [sym_char_literal] = ACTIONS(1266), - [sym_string_literal] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1203), [sym_comment] = ACTIONS(119), }, [513] = { - [anon_sym_LPAREN] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [sym_function_specifier] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1272), - [sym_char_literal] = ACTIONS(1272), - [sym_string_literal] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(1273), + [anon_sym_POUNDinclude] = ACTIONS(1275), + [anon_sym_POUNDdefine] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_POUNDifdef] = ACTIONS(1275), + [anon_sym_POUNDifndef] = ACTIONS(1275), + [anon_sym_POUNDendif] = ACTIONS(1275), + [anon_sym_POUNDelse] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [sym_function_specifier] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1275), + [sym_string_literal] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1277), [sym_comment] = ACTIONS(119), }, [514] = { - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [sym_function_specifier] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [sym_string_literal] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1281), + [anon_sym_extern] = ACTIONS(1281), + [anon_sym_auto] = ACTIONS(1281), + [anon_sym_register] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1281), + [anon_sym_restrict] = ACTIONS(1281), + [anon_sym_volatile] = ACTIONS(1281), + [sym_function_specifier] = ACTIONS(1281), + [anon_sym_unsigned] = ACTIONS(1281), + [anon_sym_long] = ACTIONS(1281), + [anon_sym_short] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_switch] = ACTIONS(1281), + [anon_sym_case] = ACTIONS(1281), + [anon_sym_default] = ACTIONS(1281), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_do] = ACTIONS(1281), + [anon_sym_for] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1281), + [anon_sym_break] = ACTIONS(1281), + [anon_sym_continue] = ACTIONS(1281), + [anon_sym_goto] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_sizeof] = ACTIONS(1281), + [sym_number_literal] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1281), + [sym_string_literal] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), [sym_comment] = ACTIONS(119), }, [515] = { - [aux_sym_declaration_repeat1] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = 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_else] = 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(119), }, [516] = { - [sym__declarator] = STATE(518), - [sym_pointer_declarator] = STATE(30), - [sym_function_declarator] = STATE(30), - [sym_array_declarator] = STATE(30), - [sym_init_declarator] = STATE(519), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(270), - [sym_identifier] = ACTIONS(212), + [aux_sym_declaration_repeat1] = STATE(35), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), [sym_comment] = ACTIONS(119), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [anon_sym_POUNDinclude] = ACTIONS(1286), - [anon_sym_POUNDdefine] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_POUNDifdef] = ACTIONS(1286), - [anon_sym_POUNDifndef] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [sym_function_specifier] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [sym_string_literal] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), + [sym__declarator] = STATE(519), + [sym_pointer_declarator] = STATE(30), + [sym_function_declarator] = STATE(30), + [sym_array_declarator] = STATE(30), + [sym_init_declarator] = STATE(520), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(277), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [518] = { - [aux_sym_declaration_repeat1] = STATE(520), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), + [ts_builtin_sym_end] = ACTIONS(1293), + [anon_sym_POUNDinclude] = ACTIONS(1295), + [anon_sym_POUNDdefine] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_POUNDifdef] = ACTIONS(1295), + [anon_sym_POUNDifndef] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = 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_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(119), }, [519] = { - [aux_sym_declaration_repeat1] = STATE(520), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(280), + [aux_sym_declaration_repeat1] = STATE(521), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), [sym_comment] = ACTIONS(119), }, [520] = { - [anon_sym_COMMA] = ACTIONS(278), - [anon_sym_SEMI] = ACTIONS(1290), + [aux_sym_declaration_repeat1] = STATE(521), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(287), [sym_comment] = ACTIONS(119), }, [521] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_POUNDinclude] = ACTIONS(1294), - [anon_sym_POUNDdefine] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_POUNDifdef] = ACTIONS(1294), - [anon_sym_POUNDifndef] = ACTIONS(1294), - [anon_sym_POUNDendif] = ACTIONS(1294), - [anon_sym_POUNDelse] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [sym_function_specifier] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [sym_string_literal] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(1299), [sym_comment] = ACTIONS(119), }, [522] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(524), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [ts_builtin_sym_end] = ACTIONS(1301), + [anon_sym_POUNDinclude] = ACTIONS(1303), + [anon_sym_POUNDdefine] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_POUNDifdef] = ACTIONS(1303), + [anon_sym_POUNDifndef] = ACTIONS(1303), + [anon_sym_POUNDendif] = ACTIONS(1303), + [anon_sym_POUNDelse] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [sym_function_specifier] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1303), + [sym_char_literal] = ACTIONS(1303), + [sym_string_literal] = ACTIONS(1303), + [sym_identifier] = ACTIONS(1305), + [sym_comment] = ACTIONS(119), + }, + [523] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -28342,413 +28419,413 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), - [sym_comment] = ACTIONS(119), - }, - [523] = { - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, [524] = { - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [sym_function_specifier] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [sym_string_literal] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [525] = { - [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = 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), [sym_comment] = ACTIONS(119), }, [526] = { - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [sym_function_specifier] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [sym_string_literal] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1315), [sym_comment] = ACTIONS(119), }, [527] = { - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [sym_function_specifier] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1316), - [sym_string_literal] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [sym_function_specifier] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1319), + [sym_char_literal] = ACTIONS(1319), + [sym_string_literal] = ACTIONS(1319), + [sym_identifier] = ACTIONS(1321), [sym_comment] = ACTIONS(119), }, [528] = { - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [sym_function_specifier] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [sym_string_literal] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [sym_function_specifier] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1325), + [sym_char_literal] = ACTIONS(1325), + [sym_string_literal] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), [sym_comment] = ACTIONS(119), }, [529] = { - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [sym_function_specifier] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [sym_string_literal] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [sym_function_specifier] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1331), + [sym_char_literal] = ACTIONS(1331), + [sym_string_literal] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1333), [sym_comment] = ACTIONS(119), }, [530] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = 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(119), }, [531] = { - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [sym_function_specifier] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1336), - [sym_char_literal] = ACTIONS(1336), - [sym_string_literal] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [532] = { - [sym_declaration] = STATE(533), - [sym__declaration_specifiers] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_auto] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [anon_sym_volatile] = ACTIONS(1345), + [sym_function_specifier] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_sizeof] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1345), + [sym_char_literal] = ACTIONS(1345), + [sym_string_literal] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [sym_comment] = ACTIONS(119), + }, + [533] = { + [sym_declaration] = STATE(534), + [sym__declaration_specifiers] = STATE(536), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(536), + [sym__type_specifier] = STATE(537), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__expression] = STATE(537), + [sym__expression] = STATE(538), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -28767,9 +28844,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(857), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -28785,22 +28862,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1351), [sym_comment] = ACTIONS(119), }, - [533] = { - [sym__expression] = STATE(556), + [534] = { + [sym__expression] = STATE(557), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -28816,66 +28893,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [534] = { - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [sym_identifier] = ACTIONS(190), + [535] = { + [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_identifier] = ACTIONS(192), [sym_comment] = ACTIONS(119), }, - [535] = { - [sym__type_specifier] = STATE(554), + [536] = { + [sym__type_specifier] = STATE(555), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -28891,59 +28968,59 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [536] = { - [sym__declarator] = STATE(515), + [537] = { + [sym__declarator] = STATE(516), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), [sym_init_declarator] = STATE(32), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(270), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(277), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [537] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [538] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [538] = { - [sym__expression] = STATE(540), + [539] = { + [sym__expression] = STATE(541), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -28959,25 +29036,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [539] = { - [sym__expression] = STATE(551), + [540] = { + [sym__expression] = STATE(552), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -28993,65 +29070,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [540] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [541] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [541] = { - [sym__expression] = STATE(543), + [542] = { + [sym__expression] = STATE(544), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29067,39 +29144,39 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [542] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(549), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [543] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(550), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29115,93 +29192,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, - [543] = { - [aux_sym_for_statement_repeat1] = STATE(545), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [544] = { + [aux_sym_for_statement_repeat1] = STATE(546), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [544] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(548), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [545] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(549), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29217,56 +29294,56 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, - [545] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1358), + [546] = { + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1367), [sym_comment] = ACTIONS(119), }, - [546] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(547), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [547] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(548), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29282,192 +29359,192 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), - [sym_comment] = ACTIONS(119), - }, - [547] = { - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [sym_function_specifier] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [sym_string_literal] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, [548] = { - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [sym_function_specifier] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1368), - [sym_char_literal] = ACTIONS(1368), - [sym_string_literal] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_typedef] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym_auto] = ACTIONS(1371), + [anon_sym_register] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_restrict] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1371), + [sym_function_specifier] = ACTIONS(1371), + [anon_sym_unsigned] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_case] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_goto] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_sizeof] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1371), + [sym_char_literal] = ACTIONS(1371), + [sym_string_literal] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1373), [sym_comment] = ACTIONS(119), }, [549] = { - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [sym_function_specifier] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [sym_string_literal] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1377), + [anon_sym_auto] = ACTIONS(1377), + [anon_sym_register] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_restrict] = ACTIONS(1377), + [anon_sym_volatile] = ACTIONS(1377), + [sym_function_specifier] = ACTIONS(1377), + [anon_sym_unsigned] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_else] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_case] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_goto] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_sizeof] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(1377), + [sym_char_literal] = ACTIONS(1377), + [sym_string_literal] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), [sym_comment] = ACTIONS(119), }, [550] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(553), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1383), + [anon_sym_auto] = ACTIONS(1383), + [anon_sym_register] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_restrict] = ACTIONS(1383), + [anon_sym_volatile] = ACTIONS(1383), + [sym_function_specifier] = ACTIONS(1383), + [anon_sym_unsigned] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_case] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_goto] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_sizeof] = ACTIONS(1383), + [sym_number_literal] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [sym_string_literal] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1385), + [sym_comment] = ACTIONS(119), + }, + [551] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(554), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29483,142 +29560,142 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), - [sym_comment] = ACTIONS(119), - }, - [551] = { - [aux_sym_for_statement_repeat1] = STATE(552), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, [552] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1356), + [aux_sym_for_statement_repeat1] = STATE(553), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [553] = { - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [sym_function_specifier] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1380), - [sym_char_literal] = ACTIONS(1380), - [sym_string_literal] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1365), [sym_comment] = ACTIONS(119), }, [554] = { - [sym__declarator] = STATE(518), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_typedef] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_auto] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [sym_function_specifier] = ACTIONS(1389), + [anon_sym_unsigned] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_else] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_goto] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1389), + [sym_number_literal] = ACTIONS(1389), + [sym_char_literal] = ACTIONS(1389), + [sym_string_literal] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1391), + [sym_comment] = ACTIONS(119), + }, + [555] = { + [sym__declarator] = STATE(519), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym_init_declarator] = STATE(519), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(270), - [sym_identifier] = ACTIONS(212), + [sym_init_declarator] = STATE(520), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(277), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [555] = { - [sym__expression] = STATE(558), + [556] = { + [sym__expression] = STATE(559), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29634,79 +29711,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [556] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [557] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [557] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(560), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [558] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(561), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29722,139 +29799,139 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), - [sym_comment] = ACTIONS(119), - }, - [558] = { - [aux_sym_for_statement_repeat1] = STATE(559), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, [559] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1354), + [aux_sym_for_statement_repeat1] = STATE(560), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [560] = { - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [sym_function_specifier] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_else] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1388), - [sym_char_literal] = ACTIONS(1388), - [sym_string_literal] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1363), [sym_comment] = ACTIONS(119), }, [561] = { - [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [sym_function_specifier] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_goto] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1397), + [sym_char_literal] = ACTIONS(1397), + [sym_string_literal] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), [sym_comment] = ACTIONS(119), }, [562] = { - [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1401), [sym_comment] = ACTIONS(119), }, [563] = { - [sym__expression] = STATE(600), + [anon_sym_LPAREN] = ACTIONS(1403), + [sym_comment] = ACTIONS(119), + }, + [564] = { + [sym__expression] = STATE(601), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29870,85 +29947,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [564] = { - [anon_sym_COLON] = ACTIONS(1396), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [565] = { - [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1405), [sym_comment] = ACTIONS(119), }, [566] = { - [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1407), [sym_comment] = ACTIONS(119), }, [567] = { - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(1409), [sym_comment] = ACTIONS(119), }, [568] = { - [anon_sym_while] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(1411), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [569] = { - [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1413), [sym_comment] = ACTIONS(119), }, [570] = { - [sym__expression] = STATE(571), + [anon_sym_LPAREN] = ACTIONS(1415), + [sym_comment] = ACTIONS(119), + }, + [571] = { + [sym__expression] = STATE(572), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -29964,125 +30041,125 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [571] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [572] = { - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [sym_function_specifier] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_goto] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1412), - [sym_number_literal] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [sym_string_literal] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [573] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(524), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [sym_function_specifier] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_case] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_goto] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_sizeof] = ACTIONS(1421), + [sym_number_literal] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [sym_string_literal] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [sym_comment] = ACTIONS(119), + }, + [574] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30098,46 +30175,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [574] = { - [sym_declaration] = STATE(575), - [sym__declaration_specifiers] = STATE(535), + [575] = { + [sym_declaration] = STATE(576), + [sym__declaration_specifiers] = STATE(536), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(536), + [sym__type_specifier] = STATE(537), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__expression] = STATE(576), + [sym__expression] = STATE(577), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30156,9 +30233,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(857), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -30174,22 +30251,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1351), [sym_comment] = ACTIONS(119), }, - [575] = { - [sym__expression] = STATE(590), + [576] = { + [sym__expression] = STATE(591), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30205,65 +30282,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [576] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [577] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [577] = { - [sym__expression] = STATE(579), + [578] = { + [sym__expression] = STATE(580), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30279,25 +30356,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [578] = { - [sym__expression] = STATE(587), + [579] = { + [sym__expression] = STATE(588), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30313,65 +30390,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [579] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [580] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [580] = { - [sym__expression] = STATE(582), + [581] = { + [sym__expression] = STATE(583), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30387,39 +30464,39 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [581] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(549), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [582] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(550), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30435,93 +30512,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [582] = { - [aux_sym_for_statement_repeat1] = STATE(584), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [583] = { + [aux_sym_for_statement_repeat1] = STATE(585), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [583] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(548), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [584] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(549), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30537,56 +30614,56 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [584] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1432), + [585] = { + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1441), [sym_comment] = ACTIONS(119), }, - [585] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(547), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [586] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(548), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30602,51 +30679,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [586] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(553), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [587] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(554), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30662,84 +30739,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(119), - }, - [587] = { - [aux_sym_for_statement_repeat1] = STATE(588), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, [588] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1430), + [aux_sym_for_statement_repeat1] = STATE(589), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [589] = { - [sym__expression] = STATE(592), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1439), + [sym_comment] = ACTIONS(119), + }, + [590] = { + [sym__expression] = STATE(593), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30755,79 +30832,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [590] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [591] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [591] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(560), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [592] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(561), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30843,84 +30920,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(119), - }, - [592] = { - [aux_sym_for_statement_repeat1] = STATE(593), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, [593] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1428), + [aux_sym_for_statement_repeat1] = STATE(594), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [594] = { - [sym__expression] = STATE(595), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1437), + [sym_comment] = ACTIONS(119), + }, + [595] = { + [sym__expression] = STATE(596), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -30936,78 +31013,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [595] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [596] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [596] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(597), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [597] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(598), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31023,98 +31100,98 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(119), - }, - [597] = { - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [sym_function_specifier] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1440), - [sym_char_literal] = ACTIONS(1440), - [sym_string_literal] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, [598] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(599), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_extern] = 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(119), + }, + [599] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(600), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31130,138 +31207,138 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(119), - }, - [599] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [sym_function_specifier] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_else] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [sym_string_literal] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, [600] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_typedef] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_auto] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_restrict] = ACTIONS(1455), + [anon_sym_volatile] = ACTIONS(1455), + [sym_function_specifier] = ACTIONS(1455), + [anon_sym_unsigned] = ACTIONS(1455), + [anon_sym_long] = ACTIONS(1455), + [anon_sym_short] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_goto] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_TILDE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1453), + [anon_sym_sizeof] = ACTIONS(1455), + [sym_number_literal] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [sym_string_literal] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), [sym_comment] = ACTIONS(119), }, [601] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(602), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(1459), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [602] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(603), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31277,84 +31354,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [602] = { - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [sym_function_specifier] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [sym_string_literal] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), + [603] = { + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_typedef] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_auto] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_restrict] = ACTIONS(1463), + [anon_sym_volatile] = ACTIONS(1463), + [sym_function_specifier] = ACTIONS(1463), + [anon_sym_unsigned] = ACTIONS(1463), + [anon_sym_long] = ACTIONS(1463), + [anon_sym_short] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_case] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_goto] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1461), + [anon_sym_PLUS_PLUS] = ACTIONS(1461), + [anon_sym_sizeof] = ACTIONS(1463), + [sym_number_literal] = ACTIONS(1463), + [sym_char_literal] = ACTIONS(1463), + [sym_string_literal] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), [sym_comment] = ACTIONS(119), }, - [603] = { - [sym__expression] = STATE(604), + [604] = { + [sym__expression] = STATE(605), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31370,78 +31447,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [604] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [605] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [605] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(606), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [606] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(607), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31457,84 +31534,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [606] = { - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_auto] = ACTIONS(1462), - [anon_sym_register] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_restrict] = ACTIONS(1462), - [anon_sym_volatile] = ACTIONS(1462), - [sym_function_specifier] = ACTIONS(1462), - [anon_sym_unsigned] = ACTIONS(1462), - [anon_sym_long] = ACTIONS(1462), - [anon_sym_short] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_else] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_goto] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1462), - [sym_number_literal] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [sym_string_literal] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), + [607] = { + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [sym_function_specifier] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_sizeof] = ACTIONS(1471), + [sym_number_literal] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [sym_string_literal] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), [sym_comment] = ACTIONS(119), }, - [607] = { - [sym__expression] = STATE(608), + [608] = { + [sym__expression] = STATE(609), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31550,78 +31627,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [608] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [609] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [609] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(617), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [610] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(618), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31637,45 +31714,45 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), - [sym_comment] = ACTIONS(119), - }, - [610] = { - [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, [611] = { - [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1491), [sym_comment] = ACTIONS(119), }, [612] = { - [sym__expression] = STATE(645), + [anon_sym_LPAREN] = ACTIONS(1493), + [sym_comment] = ACTIONS(119), + }, + [613] = { + [sym__expression] = STATE(646), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31691,96 +31768,96 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [613] = { - [anon_sym_COLON] = ACTIONS(1486), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [614] = { - [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_COLON] = ACTIONS(1495), [sym_comment] = ACTIONS(119), }, [615] = { - [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1497), [sym_comment] = ACTIONS(119), }, [616] = { - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(1492), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(1499), [sym_comment] = ACTIONS(119), }, [617] = { - [anon_sym_else] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(1501), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [618] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(619), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_else] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1505), + [sym_comment] = ACTIONS(119), + }, + [619] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31796,98 +31873,98 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1243), [sym_comment] = ACTIONS(119), }, - [619] = { - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [sym_function_specifier] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [sym_string_literal] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), + [620] = { + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_extern] = 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(119), }, - [620] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(524), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [621] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31903,46 +31980,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [621] = { - [sym_declaration] = STATE(622), - [sym__declaration_specifiers] = STATE(535), + [622] = { + [sym_declaration] = STATE(623), + [sym__declaration_specifiers] = STATE(536), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(536), + [sym__type_specifier] = STATE(537), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__expression] = STATE(623), + [sym__expression] = STATE(624), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -31961,9 +32038,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(857), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -31979,22 +32056,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1351), [sym_comment] = ACTIONS(119), }, - [622] = { - [sym__expression] = STATE(637), + [623] = { + [sym__expression] = STATE(638), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32010,65 +32087,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [623] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [624] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [624] = { - [sym__expression] = STATE(626), + [625] = { + [sym__expression] = STATE(627), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32084,25 +32161,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [625] = { - [sym__expression] = STATE(634), + [626] = { + [sym__expression] = STATE(635), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32118,65 +32195,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [626] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [627] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [627] = { - [sym__expression] = STATE(629), + [628] = { + [sym__expression] = STATE(630), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32192,39 +32269,39 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [628] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(549), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [629] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(550), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32240,93 +32317,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [629] = { - [aux_sym_for_statement_repeat1] = STATE(631), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [630] = { + [aux_sym_for_statement_repeat1] = STATE(632), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [630] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(548), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [631] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(549), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32342,56 +32419,56 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [631] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1520), + [632] = { + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1529), [sym_comment] = ACTIONS(119), }, - [632] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(547), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [633] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(548), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32407,51 +32484,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [633] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(553), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [634] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(554), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32467,84 +32544,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), - [sym_comment] = ACTIONS(119), - }, - [634] = { - [aux_sym_for_statement_repeat1] = STATE(635), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, [635] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1518), + [aux_sym_for_statement_repeat1] = STATE(636), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [636] = { - [sym__expression] = STATE(639), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1527), + [sym_comment] = ACTIONS(119), + }, + [637] = { + [sym__expression] = STATE(640), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32560,79 +32637,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [637] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [638] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [638] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(560), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [639] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(561), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32648,84 +32725,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), - [sym_comment] = ACTIONS(119), - }, - [639] = { - [aux_sym_for_statement_repeat1] = STATE(640), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, [640] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1516), + [aux_sym_for_statement_repeat1] = STATE(641), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [641] = { - [sym__expression] = STATE(642), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1525), + [sym_comment] = ACTIONS(119), + }, + [642] = { + [sym__expression] = STATE(643), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32741,78 +32818,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [642] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [643] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [643] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(597), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [644] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(598), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32828,51 +32905,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [644] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(599), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [645] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(600), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32888,91 +32965,91 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [645] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [646] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(1535), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [646] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(602), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [647] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(603), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -32988,37 +33065,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [647] = { - [sym__expression] = STATE(648), + [648] = { + [sym__expression] = STATE(649), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33034,78 +33111,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [648] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [649] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [649] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(606), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [650] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(607), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33121,37 +33198,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [650] = { - [sym__expression] = STATE(651), + [651] = { + [sym__expression] = STATE(652), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33167,78 +33244,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [651] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [652] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [652] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(653), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [653] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(654), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33254,56 +33331,56 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [653] = { - [anon_sym_else] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1496), + [654] = { + [anon_sym_else] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1505), [sym_comment] = ACTIONS(119), }, - [654] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(619), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [655] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33319,37 +33396,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1489), [sym_comment] = ACTIONS(119), }, - [655] = { - [sym__expression] = STATE(656), + [656] = { + [sym__expression] = STATE(657), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33365,78 +33442,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [656] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [657] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [657] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(597), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [658] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(598), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33452,51 +33529,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, - [658] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(599), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [659] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(600), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33512,91 +33589,91 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, - [659] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(1536), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [660] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(1545), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [660] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(602), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [661] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(603), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33612,37 +33689,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, - [661] = { - [sym__expression] = STATE(662), + [662] = { + [sym__expression] = STATE(663), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33658,78 +33735,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [662] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [663] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [663] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(606), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [664] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(607), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33745,37 +33822,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, - [664] = { - [sym__expression] = STATE(665), + [665] = { + [sym__expression] = STATE(666), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33791,78 +33868,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [665] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [666] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [666] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(674), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [667] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(675), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33878,45 +33955,45 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(119), - }, - [667] = { - [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [668] = { - [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1565), [sym_comment] = ACTIONS(119), }, [669] = { - [sym__expression] = STATE(701), + [anon_sym_LPAREN] = ACTIONS(1567), + [sym_comment] = ACTIONS(119), + }, + [670] = { + [sym__expression] = STATE(702), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -33932,138 +34009,138 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [670] = { - [anon_sym_COLON] = ACTIONS(1560), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [671] = { - [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_COLON] = ACTIONS(1569), [sym_comment] = ACTIONS(119), }, [672] = { - [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1571), [sym_comment] = ACTIONS(119), }, [673] = { - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(1573), [sym_comment] = ACTIONS(119), }, [674] = { - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_auto] = ACTIONS(1568), - [anon_sym_register] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_restrict] = ACTIONS(1568), - [anon_sym_volatile] = ACTIONS(1568), - [sym_function_specifier] = ACTIONS(1568), - [anon_sym_unsigned] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_enum] = ACTIONS(1568), - [anon_sym_struct] = ACTIONS(1568), - [anon_sym_union] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_else] = ACTIONS(1570), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_goto] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1496), - [anon_sym_sizeof] = ACTIONS(1568), - [sym_number_literal] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [sym_string_literal] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(1575), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [675] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(619), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1577), + [anon_sym_auto] = ACTIONS(1577), + [anon_sym_register] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_restrict] = ACTIONS(1577), + [anon_sym_volatile] = ACTIONS(1577), + [sym_function_specifier] = ACTIONS(1577), + [anon_sym_unsigned] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_struct] = ACTIONS(1577), + [anon_sym_union] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_goto] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_sizeof] = ACTIONS(1577), + [sym_number_literal] = ACTIONS(1577), + [sym_char_literal] = ACTIONS(1577), + [sym_string_literal] = ACTIONS(1577), + [sym_identifier] = ACTIONS(1581), + [sym_comment] = ACTIONS(119), + }, + [676] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34079,51 +34156,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(119), }, - [676] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(524), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [677] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(525), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34139,46 +34216,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [677] = { - [sym_declaration] = STATE(678), - [sym__declaration_specifiers] = STATE(535), + [678] = { + [sym_declaration] = STATE(679), + [sym__declaration_specifiers] = STATE(536), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(536), + [sym__type_specifier] = STATE(537), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__expression] = STATE(679), + [sym__expression] = STATE(680), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34197,9 +34274,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(857), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -34215,22 +34292,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1351), [sym_comment] = ACTIONS(119), }, - [678] = { - [sym__expression] = STATE(693), + [679] = { + [sym__expression] = STATE(694), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34246,65 +34323,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [679] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [680] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [680] = { - [sym__expression] = STATE(682), + [681] = { + [sym__expression] = STATE(683), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34320,25 +34397,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [681] = { - [sym__expression] = STATE(690), + [682] = { + [sym__expression] = STATE(691), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34354,65 +34431,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [682] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [683] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [683] = { - [sym__expression] = STATE(685), + [684] = { + [sym__expression] = STATE(686), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34428,39 +34505,39 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [684] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(549), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [685] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(550), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34476,93 +34553,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [685] = { - [aux_sym_for_statement_repeat1] = STATE(687), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [686] = { + [aux_sym_for_statement_repeat1] = STATE(688), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [686] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(548), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [687] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(549), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34578,56 +34655,56 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [687] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1590), + [688] = { + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1599), [sym_comment] = ACTIONS(119), }, - [688] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(547), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [689] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(548), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34643,51 +34720,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [689] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(553), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [690] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(554), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34703,84 +34780,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(119), - }, - [690] = { - [aux_sym_for_statement_repeat1] = STATE(691), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [691] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1588), + [aux_sym_for_statement_repeat1] = STATE(692), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [692] = { - [sym__expression] = STATE(695), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1597), + [sym_comment] = ACTIONS(119), + }, + [693] = { + [sym__expression] = STATE(696), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34796,79 +34873,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [693] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [694] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [694] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(560), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [695] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(561), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34884,84 +34961,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(119), - }, - [695] = { - [aux_sym_for_statement_repeat1] = STATE(696), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [696] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(1586), + [aux_sym_for_statement_repeat1] = STATE(697), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [697] = { - [sym__expression] = STATE(698), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1595), + [sym_comment] = ACTIONS(119), + }, + [698] = { + [sym__expression] = STATE(699), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -34977,78 +35054,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [698] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [699] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [699] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(597), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [700] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(598), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35064,51 +35141,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [700] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(599), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [701] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(600), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35124,91 +35201,91 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [701] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(1596), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [702] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(1605), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [702] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(602), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [703] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(603), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35224,37 +35301,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [703] = { - [sym__expression] = STATE(704), + [704] = { + [sym__expression] = STATE(705), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35270,78 +35347,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [704] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [705] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [705] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(606), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [706] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(607), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35357,37 +35434,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [706] = { - [sym__expression] = STATE(707), + [707] = { + [sym__expression] = STATE(708), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35403,78 +35480,78 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [707] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [708] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [708] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(709), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [709] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(710), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35490,98 +35567,98 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [709] = { - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_auto] = ACTIONS(1568), - [anon_sym_register] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_restrict] = ACTIONS(1568), - [anon_sym_volatile] = ACTIONS(1568), - [sym_function_specifier] = ACTIONS(1568), - [anon_sym_unsigned] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_enum] = ACTIONS(1568), - [anon_sym_struct] = ACTIONS(1568), - [anon_sym_union] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_goto] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1496), - [anon_sym_sizeof] = ACTIONS(1568), - [sym_number_literal] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [sym_string_literal] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1572), + [710] = { + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_typedef] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1577), + [anon_sym_auto] = ACTIONS(1577), + [anon_sym_register] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_restrict] = ACTIONS(1577), + [anon_sym_volatile] = ACTIONS(1577), + [sym_function_specifier] = ACTIONS(1577), + [anon_sym_unsigned] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_struct] = ACTIONS(1577), + [anon_sym_union] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1611), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_goto] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_DASH_DASH] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1505), + [anon_sym_sizeof] = ACTIONS(1577), + [sym_number_literal] = ACTIONS(1577), + [sym_char_literal] = ACTIONS(1577), + [sym_string_literal] = ACTIONS(1577), + [sym_identifier] = ACTIONS(1581), [sym_comment] = ACTIONS(119), }, - [710] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(619), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [711] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(620), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -35597,140 +35674,140 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [711] = { - [sym__declarator] = STATE(712), + [712] = { + [sym__declarator] = STATE(713), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym_init_declarator] = STATE(519), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(210), - [sym_identifier] = ACTIONS(212), - [sym_comment] = ACTIONS(119), - }, - [712] = { - [sym_compound_statement] = STATE(713), - [aux_sym_declaration_repeat1] = STATE(520), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), + [sym_init_declarator] = STATE(520), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(212), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(1604), - [anon_sym_POUNDinclude] = ACTIONS(1606), - [anon_sym_POUNDdefine] = ACTIONS(1606), - [anon_sym_POUNDifdef] = ACTIONS(1606), - [anon_sym_POUNDifndef] = ACTIONS(1606), - [anon_sym_POUNDendif] = ACTIONS(1606), - [anon_sym_POUNDelse] = ACTIONS(1606), - [sym_preproc_directive] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1606), - [anon_sym_typedef] = ACTIONS(1606), - [anon_sym_extern] = ACTIONS(1606), - [anon_sym_auto] = ACTIONS(1606), - [anon_sym_register] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_restrict] = ACTIONS(1606), - [anon_sym_volatile] = ACTIONS(1606), - [sym_function_specifier] = ACTIONS(1606), - [anon_sym_unsigned] = ACTIONS(1606), - [anon_sym_long] = ACTIONS(1606), - [anon_sym_short] = ACTIONS(1606), - [anon_sym_enum] = ACTIONS(1606), - [anon_sym_struct] = ACTIONS(1606), - [anon_sym_union] = ACTIONS(1606), - [sym_identifier] = ACTIONS(1608), + [sym_compound_statement] = STATE(714), + [aux_sym_declaration_repeat1] = STATE(521), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(275), [sym_comment] = ACTIONS(119), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_POUNDinclude] = ACTIONS(1612), - [anon_sym_POUNDdefine] = ACTIONS(1612), - [anon_sym_POUNDifdef] = ACTIONS(1612), - [anon_sym_POUNDifndef] = ACTIONS(1612), - [anon_sym_POUNDendif] = ACTIONS(1612), - [anon_sym_POUNDelse] = ACTIONS(1612), - [sym_preproc_directive] = ACTIONS(1614), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_typedef] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_auto] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_restrict] = ACTIONS(1612), - [anon_sym_volatile] = ACTIONS(1612), - [sym_function_specifier] = ACTIONS(1612), - [anon_sym_unsigned] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1614), + [ts_builtin_sym_end] = ACTIONS(1613), + [anon_sym_POUNDinclude] = ACTIONS(1615), + [anon_sym_POUNDdefine] = ACTIONS(1615), + [anon_sym_POUNDifdef] = ACTIONS(1615), + [anon_sym_POUNDifndef] = ACTIONS(1615), + [anon_sym_POUNDendif] = ACTIONS(1615), + [anon_sym_POUNDelse] = ACTIONS(1615), + [sym_preproc_directive] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1615), + [anon_sym_typedef] = ACTIONS(1615), + [anon_sym_extern] = 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), + [sym_identifier] = ACTIONS(1617), [sym_comment] = ACTIONS(119), }, [715] = { - [sym__preproc_statement] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(1619), + [anon_sym_POUNDinclude] = ACTIONS(1621), + [anon_sym_POUNDdefine] = ACTIONS(1621), + [anon_sym_POUNDifdef] = ACTIONS(1621), + [anon_sym_POUNDifndef] = ACTIONS(1621), + [anon_sym_POUNDendif] = ACTIONS(1621), + [anon_sym_POUNDelse] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1623), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1621), + [anon_sym_register] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_restrict] = ACTIONS(1621), + [anon_sym_volatile] = ACTIONS(1621), + [sym_function_specifier] = ACTIONS(1621), + [anon_sym_unsigned] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [sym_identifier] = ACTIONS(1623), + [sym_comment] = ACTIONS(119), + }, + [716] = { + [sym__preproc_statement] = STATE(719), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), [sym_preproc_call] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(719), - [sym_function_definition] = STATE(718), - [sym_declaration] = STATE(718), - [sym__declaration_specifiers] = STATE(720), + [sym_preproc_else] = STATE(720), + [sym_function_definition] = STATE(719), + [sym_declaration] = STATE(719), + [sym__declaration_specifiers] = STATE(721), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(721), + [sym__type_specifier] = STATE(722), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), [sym_macro_type_specifier] = STATE(19), - [aux_sym_preproc_ifdef_repeat1] = STATE(722), + [aux_sym_preproc_ifdef_repeat1] = STATE(723), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), [anon_sym_POUNDinclude] = ACTIONS(123), [anon_sym_POUNDdefine] = ACTIONS(125), [anon_sym_POUNDifdef] = ACTIONS(127), [anon_sym_POUNDifndef] = ACTIONS(127), - [anon_sym_POUNDendif] = ACTIONS(1616), - [anon_sym_POUNDelse] = ACTIONS(1618), + [anon_sym_POUNDendif] = ACTIONS(1625), + [anon_sym_POUNDelse] = ACTIONS(1627), [sym_preproc_directive] = ACTIONS(129), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), @@ -35750,59 +35827,59 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [anon_sym_POUNDinclude] = ACTIONS(1622), - [anon_sym_POUNDdefine] = ACTIONS(1622), - [anon_sym_POUNDifdef] = ACTIONS(1622), - [anon_sym_POUNDifndef] = ACTIONS(1622), - [anon_sym_POUNDendif] = ACTIONS(1622), - [anon_sym_POUNDelse] = ACTIONS(1622), - [sym_preproc_directive] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1622), - [anon_sym_typedef] = ACTIONS(1622), - [anon_sym_extern] = ACTIONS(1622), - [anon_sym_auto] = ACTIONS(1622), - [anon_sym_register] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1622), - [anon_sym_restrict] = ACTIONS(1622), - [anon_sym_volatile] = ACTIONS(1622), - [sym_function_specifier] = ACTIONS(1622), - [anon_sym_unsigned] = ACTIONS(1622), - [anon_sym_long] = ACTIONS(1622), - [anon_sym_short] = ACTIONS(1622), - [anon_sym_enum] = ACTIONS(1622), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1622), - [sym_identifier] = ACTIONS(1624), + [717] = { + [ts_builtin_sym_end] = ACTIONS(1629), + [anon_sym_POUNDinclude] = ACTIONS(1631), + [anon_sym_POUNDdefine] = ACTIONS(1631), + [anon_sym_POUNDifdef] = ACTIONS(1631), + [anon_sym_POUNDifndef] = ACTIONS(1631), + [anon_sym_POUNDendif] = ACTIONS(1631), + [anon_sym_POUNDelse] = ACTIONS(1631), + [sym_preproc_directive] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1631), + [anon_sym_typedef] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_auto] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_restrict] = ACTIONS(1631), + [anon_sym_volatile] = ACTIONS(1631), + [sym_function_specifier] = ACTIONS(1631), + [anon_sym_unsigned] = ACTIONS(1631), + [anon_sym_long] = ACTIONS(1631), + [anon_sym_short] = ACTIONS(1631), + [anon_sym_enum] = ACTIONS(1631), + [anon_sym_struct] = ACTIONS(1631), + [anon_sym_union] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1633), [sym_comment] = ACTIONS(119), }, - [717] = { - [sym__preproc_statement] = STATE(718), + [718] = { + [sym__preproc_statement] = STATE(719), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), [sym_preproc_call] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_function_definition] = STATE(718), - [sym_declaration] = STATE(718), - [sym__declaration_specifiers] = STATE(720), + [sym_function_definition] = STATE(719), + [sym_declaration] = STATE(719), + [sym__declaration_specifiers] = STATE(721), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(721), + [sym__type_specifier] = STATE(722), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), [sym_macro_type_specifier] = STATE(19), - [aux_sym_preproc_ifdef_repeat1] = STATE(728), + [aux_sym_preproc_ifdef_repeat1] = STATE(729), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), [anon_sym_POUNDinclude] = ACTIONS(123), [anon_sym_POUNDdefine] = ACTIONS(125), [anon_sym_POUNDifdef] = ACTIONS(127), [anon_sym_POUNDifndef] = ACTIONS(127), - [anon_sym_POUNDendif] = ACTIONS(1626), + [anon_sym_POUNDendif] = ACTIONS(1635), [sym_preproc_directive] = ACTIONS(129), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), @@ -35822,38 +35899,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [718] = { - [anon_sym_POUNDinclude] = ACTIONS(1628), - [anon_sym_POUNDdefine] = ACTIONS(1628), - [anon_sym_POUNDifdef] = ACTIONS(1628), - [anon_sym_POUNDifndef] = ACTIONS(1628), - [anon_sym_POUNDendif] = ACTIONS(1628), - [anon_sym_POUNDelse] = ACTIONS(1628), - [sym_preproc_directive] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_typedef] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_auto] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_restrict] = ACTIONS(1628), - [anon_sym_volatile] = ACTIONS(1628), - [sym_function_specifier] = ACTIONS(1628), - [anon_sym_unsigned] = ACTIONS(1628), - [anon_sym_long] = ACTIONS(1628), - [anon_sym_short] = ACTIONS(1628), - [anon_sym_enum] = ACTIONS(1628), - [anon_sym_struct] = ACTIONS(1628), - [anon_sym_union] = ACTIONS(1628), - [sym_identifier] = ACTIONS(1630), - [sym_comment] = ACTIONS(119), - }, [719] = { - [anon_sym_POUNDendif] = ACTIONS(1632), + [anon_sym_POUNDinclude] = ACTIONS(1637), + [anon_sym_POUNDdefine] = ACTIONS(1637), + [anon_sym_POUNDifdef] = ACTIONS(1637), + [anon_sym_POUNDifndef] = ACTIONS(1637), + [anon_sym_POUNDendif] = ACTIONS(1637), + [anon_sym_POUNDelse] = ACTIONS(1637), + [sym_preproc_directive] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [anon_sym_volatile] = ACTIONS(1637), + [sym_function_specifier] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1639), [sym_comment] = ACTIONS(119), }, [720] = { - [sym__type_specifier] = STATE(727), + [anon_sym_POUNDendif] = ACTIONS(1641), + [sym_comment] = ACTIONS(119), + }, + [721] = { + [sym__type_specifier] = STATE(728), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -35869,31 +35946,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [721] = { + [722] = { [sym__declarator] = STATE(31), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), [sym_init_declarator] = STATE(32), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(210), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(212), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [722] = { - [sym__preproc_statement] = STATE(724), + [723] = { + [sym__preproc_statement] = STATE(725), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), [sym_preproc_call] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(725), - [sym_function_definition] = STATE(724), - [sym_declaration] = STATE(724), - [sym__declaration_specifiers] = STATE(720), + [sym_preproc_else] = STATE(726), + [sym_function_definition] = STATE(725), + [sym_declaration] = STATE(725), + [sym__declaration_specifiers] = STATE(721), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(721), + [sym__type_specifier] = STATE(722), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -35905,8 +35982,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(125), [anon_sym_POUNDifdef] = ACTIONS(127), [anon_sym_POUNDifndef] = ACTIONS(127), - [anon_sym_POUNDendif] = ACTIONS(1634), - [anon_sym_POUNDelse] = ACTIONS(1618), + [anon_sym_POUNDendif] = ACTIONS(1643), + [anon_sym_POUNDelse] = ACTIONS(1627), [sym_preproc_directive] = ACTIONS(129), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), @@ -35926,114 +36003,114 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(1636), - [anon_sym_POUNDinclude] = ACTIONS(1638), - [anon_sym_POUNDdefine] = ACTIONS(1638), - [anon_sym_POUNDifdef] = ACTIONS(1638), - [anon_sym_POUNDifndef] = ACTIONS(1638), - [anon_sym_POUNDendif] = ACTIONS(1638), - [anon_sym_POUNDelse] = ACTIONS(1638), - [sym_preproc_directive] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1638), - [anon_sym_typedef] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_auto] = ACTIONS(1638), - [anon_sym_register] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [anon_sym_restrict] = ACTIONS(1638), - [anon_sym_volatile] = ACTIONS(1638), - [sym_function_specifier] = ACTIONS(1638), - [anon_sym_unsigned] = ACTIONS(1638), - [anon_sym_long] = ACTIONS(1638), - [anon_sym_short] = ACTIONS(1638), - [anon_sym_enum] = ACTIONS(1638), - [anon_sym_struct] = ACTIONS(1638), - [anon_sym_union] = ACTIONS(1638), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(119), - }, [724] = { - [anon_sym_POUNDinclude] = ACTIONS(1642), - [anon_sym_POUNDdefine] = ACTIONS(1642), - [anon_sym_POUNDifdef] = ACTIONS(1642), - [anon_sym_POUNDifndef] = ACTIONS(1642), - [anon_sym_POUNDendif] = ACTIONS(1642), - [anon_sym_POUNDelse] = ACTIONS(1642), - [sym_preproc_directive] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_typedef] = ACTIONS(1642), - [anon_sym_extern] = ACTIONS(1642), - [anon_sym_auto] = ACTIONS(1642), - [anon_sym_register] = ACTIONS(1642), - [anon_sym_const] = ACTIONS(1642), - [anon_sym_restrict] = ACTIONS(1642), - [anon_sym_volatile] = ACTIONS(1642), - [sym_function_specifier] = ACTIONS(1642), - [anon_sym_unsigned] = ACTIONS(1642), - [anon_sym_long] = ACTIONS(1642), - [anon_sym_short] = ACTIONS(1642), - [anon_sym_enum] = ACTIONS(1642), - [anon_sym_struct] = ACTIONS(1642), - [anon_sym_union] = ACTIONS(1642), - [sym_identifier] = ACTIONS(1644), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_POUNDinclude] = ACTIONS(1647), + [anon_sym_POUNDdefine] = ACTIONS(1647), + [anon_sym_POUNDifdef] = ACTIONS(1647), + [anon_sym_POUNDifndef] = ACTIONS(1647), + [anon_sym_POUNDendif] = ACTIONS(1647), + [anon_sym_POUNDelse] = ACTIONS(1647), + [sym_preproc_directive] = ACTIONS(1649), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_typedef] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_auto] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [anon_sym_restrict] = ACTIONS(1647), + [anon_sym_volatile] = ACTIONS(1647), + [sym_function_specifier] = ACTIONS(1647), + [anon_sym_unsigned] = ACTIONS(1647), + [anon_sym_long] = ACTIONS(1647), + [anon_sym_short] = ACTIONS(1647), + [anon_sym_enum] = ACTIONS(1647), + [anon_sym_struct] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1649), [sym_comment] = ACTIONS(119), }, [725] = { - [anon_sym_POUNDendif] = ACTIONS(1646), + [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_static] = ACTIONS(1651), + [anon_sym_typedef] = ACTIONS(1651), + [anon_sym_extern] = 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), [sym_comment] = ACTIONS(119), }, [726] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_POUNDinclude] = ACTIONS(1650), - [anon_sym_POUNDdefine] = ACTIONS(1650), - [anon_sym_POUNDifdef] = ACTIONS(1650), - [anon_sym_POUNDifndef] = ACTIONS(1650), - [anon_sym_POUNDendif] = ACTIONS(1650), - [anon_sym_POUNDelse] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [anon_sym_volatile] = ACTIONS(1650), - [sym_function_specifier] = ACTIONS(1650), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_long] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1652), + [anon_sym_POUNDendif] = ACTIONS(1655), [sym_comment] = ACTIONS(119), }, [727] = { - [sym__declarator] = STATE(712), + [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_static] = ACTIONS(1659), + [anon_sym_typedef] = ACTIONS(1659), + [anon_sym_extern] = 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), + [sym_comment] = ACTIONS(119), + }, + [728] = { + [sym__declarator] = STATE(713), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym_init_declarator] = STATE(519), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(210), - [sym_identifier] = ACTIONS(212), + [sym_init_declarator] = STATE(520), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(212), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [728] = { - [sym__preproc_statement] = STATE(724), + [729] = { + [sym__preproc_statement] = STATE(725), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), [sym_preproc_call] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_function_definition] = STATE(724), - [sym_declaration] = STATE(724), - [sym__declaration_specifiers] = STATE(720), + [sym_function_definition] = STATE(725), + [sym_declaration] = STATE(725), + [sym__declaration_specifiers] = STATE(721), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(721), + [sym__type_specifier] = STATE(722), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -36045,7 +36122,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(125), [anon_sym_POUNDifdef] = ACTIONS(127), [anon_sym_POUNDifndef] = ACTIONS(127), - [anon_sym_POUNDendif] = ACTIONS(1654), + [anon_sym_POUNDendif] = ACTIONS(1663), [sym_preproc_directive] = ACTIONS(129), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), @@ -36065,234 +36142,234 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [729] = { - [sym_preproc_params] = STATE(733), - [anon_sym_LF] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [sym_preproc_arg] = ACTIONS(1660), - [sym_comment] = ACTIONS(119), - }, [730] = { - [ts_builtin_sym_end] = ACTIONS(1662), - [anon_sym_POUNDinclude] = ACTIONS(1664), - [anon_sym_POUNDdefine] = ACTIONS(1664), - [anon_sym_POUNDifdef] = ACTIONS(1664), - [anon_sym_POUNDifndef] = ACTIONS(1664), - [anon_sym_POUNDendif] = ACTIONS(1664), - [anon_sym_POUNDelse] = ACTIONS(1664), - [sym_preproc_directive] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_auto] = ACTIONS(1664), - [anon_sym_register] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_restrict] = ACTIONS(1664), - [anon_sym_volatile] = ACTIONS(1664), - [sym_function_specifier] = ACTIONS(1664), - [anon_sym_unsigned] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_enum] = ACTIONS(1664), - [anon_sym_struct] = ACTIONS(1664), - [anon_sym_union] = ACTIONS(1664), - [sym_identifier] = ACTIONS(1666), + [sym_preproc_params] = STATE(734), + [anon_sym_LF] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1667), + [sym_preproc_arg] = ACTIONS(1669), [sym_comment] = ACTIONS(119), }, [731] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), + [ts_builtin_sym_end] = ACTIONS(1671), + [anon_sym_POUNDinclude] = ACTIONS(1673), + [anon_sym_POUNDdefine] = ACTIONS(1673), + [anon_sym_POUNDifdef] = ACTIONS(1673), + [anon_sym_POUNDifndef] = ACTIONS(1673), + [anon_sym_POUNDendif] = ACTIONS(1673), + [anon_sym_POUNDelse] = ACTIONS(1673), + [sym_preproc_directive] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_typedef] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_auto] = ACTIONS(1673), + [anon_sym_register] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_restrict] = ACTIONS(1673), + [anon_sym_volatile] = ACTIONS(1673), + [sym_function_specifier] = ACTIONS(1673), + [anon_sym_unsigned] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_struct] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(119), }, [732] = { - [anon_sym_LF] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1679), + [sym_identifier] = ACTIONS(1681), [sym_comment] = ACTIONS(119), }, [733] = { - [anon_sym_LF] = ACTIONS(1676), - [sym_preproc_arg] = ACTIONS(1678), + [anon_sym_LF] = ACTIONS(1683), [sym_comment] = ACTIONS(119), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(1680), - [anon_sym_POUNDinclude] = ACTIONS(1682), - [anon_sym_POUNDdefine] = ACTIONS(1682), - [anon_sym_POUNDifdef] = ACTIONS(1682), - [anon_sym_POUNDifndef] = ACTIONS(1682), - [anon_sym_POUNDendif] = ACTIONS(1682), - [anon_sym_POUNDelse] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_typedef] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_auto] = ACTIONS(1682), - [anon_sym_register] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_restrict] = ACTIONS(1682), - [anon_sym_volatile] = ACTIONS(1682), - [sym_function_specifier] = ACTIONS(1682), - [anon_sym_unsigned] = ACTIONS(1682), - [anon_sym_long] = ACTIONS(1682), - [anon_sym_short] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), + [anon_sym_LF] = ACTIONS(1685), + [sym_preproc_arg] = ACTIONS(1687), [sym_comment] = ACTIONS(119), }, [735] = { - [anon_sym_LF] = ACTIONS(1686), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_POUNDinclude] = ACTIONS(1691), + [anon_sym_POUNDdefine] = ACTIONS(1691), + [anon_sym_POUNDifdef] = ACTIONS(1691), + [anon_sym_POUNDifndef] = ACTIONS(1691), + [anon_sym_POUNDendif] = ACTIONS(1691), + [anon_sym_POUNDelse] = ACTIONS(1691), + [sym_preproc_directive] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_typedef] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_auto] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_restrict] = ACTIONS(1691), + [anon_sym_volatile] = ACTIONS(1691), + [sym_function_specifier] = ACTIONS(1691), + [anon_sym_unsigned] = ACTIONS(1691), + [anon_sym_long] = ACTIONS(1691), + [anon_sym_short] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1693), [sym_comment] = ACTIONS(119), }, [736] = { - [ts_builtin_sym_end] = ACTIONS(1688), - [anon_sym_POUNDinclude] = ACTIONS(1690), - [anon_sym_POUNDdefine] = ACTIONS(1690), - [anon_sym_POUNDifdef] = ACTIONS(1690), - [anon_sym_POUNDifndef] = ACTIONS(1690), - [anon_sym_POUNDendif] = ACTIONS(1690), - [anon_sym_POUNDelse] = ACTIONS(1690), - [sym_preproc_directive] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_typedef] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_auto] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_restrict] = ACTIONS(1690), - [anon_sym_volatile] = ACTIONS(1690), - [sym_function_specifier] = ACTIONS(1690), - [anon_sym_unsigned] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), + [anon_sym_LF] = ACTIONS(1695), [sym_comment] = ACTIONS(119), }, [737] = { - [ts_builtin_sym_end] = ACTIONS(1694), - [anon_sym_POUNDinclude] = ACTIONS(1696), - [anon_sym_POUNDdefine] = ACTIONS(1696), - [anon_sym_POUNDifdef] = ACTIONS(1696), - [anon_sym_POUNDifndef] = ACTIONS(1696), - [anon_sym_POUNDendif] = ACTIONS(1696), - [anon_sym_POUNDelse] = ACTIONS(1696), - [sym_preproc_directive] = ACTIONS(1698), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_typedef] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym_auto] = ACTIONS(1696), - [anon_sym_register] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1696), - [anon_sym_restrict] = ACTIONS(1696), - [anon_sym_volatile] = ACTIONS(1696), - [sym_function_specifier] = ACTIONS(1696), - [anon_sym_unsigned] = ACTIONS(1696), - [anon_sym_long] = ACTIONS(1696), - [anon_sym_short] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_union] = ACTIONS(1696), - [sym_identifier] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1697), + [anon_sym_POUNDinclude] = ACTIONS(1699), + [anon_sym_POUNDdefine] = ACTIONS(1699), + [anon_sym_POUNDifdef] = ACTIONS(1699), + [anon_sym_POUNDifndef] = ACTIONS(1699), + [anon_sym_POUNDendif] = ACTIONS(1699), + [anon_sym_POUNDelse] = ACTIONS(1699), + [sym_preproc_directive] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_typedef] = ACTIONS(1699), + [anon_sym_extern] = ACTIONS(1699), + [anon_sym_auto] = ACTIONS(1699), + [anon_sym_register] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_restrict] = ACTIONS(1699), + [anon_sym_volatile] = ACTIONS(1699), + [sym_function_specifier] = ACTIONS(1699), + [anon_sym_unsigned] = ACTIONS(1699), + [anon_sym_long] = ACTIONS(1699), + [anon_sym_short] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1701), [sym_comment] = ACTIONS(119), }, [738] = { - [aux_sym_preproc_params_repeat1] = STATE(742), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1702), + [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_static] = ACTIONS(1705), + [anon_sym_typedef] = ACTIONS(1705), + [anon_sym_extern] = 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(119), }, [739] = { - [anon_sym_LF] = ACTIONS(1704), - [sym_preproc_arg] = ACTIONS(1706), + [aux_sym_preproc_params_repeat1] = STATE(743), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1711), [sym_comment] = ACTIONS(119), }, [740] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1708), - [sym_identifier] = ACTIONS(1710), + [anon_sym_LF] = ACTIONS(1713), + [sym_preproc_arg] = ACTIONS(1715), [sym_comment] = ACTIONS(119), }, [741] = { - [anon_sym_LF] = ACTIONS(1712), - [sym_preproc_arg] = ACTIONS(1714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [sym_identifier] = ACTIONS(1719), [sym_comment] = ACTIONS(119), }, [742] = { - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_LF] = ACTIONS(1721), + [sym_preproc_arg] = ACTIONS(1723), [sym_comment] = ACTIONS(119), }, [743] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(1725), + [anon_sym_RPAREN] = ACTIONS(1727), [sym_comment] = ACTIONS(119), }, [744] = { - [anon_sym_LF] = ACTIONS(1724), - [sym_preproc_arg] = ACTIONS(1726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1729), + [sym_identifier] = ACTIONS(1731), [sym_comment] = ACTIONS(119), }, [745] = { - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1733), + [sym_preproc_arg] = ACTIONS(1735), [sym_comment] = ACTIONS(119), }, [746] = { - [anon_sym_COMMA] = ACTIONS(1730), - [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), [sym_comment] = ACTIONS(119), }, [747] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [anon_sym_POUNDinclude] = ACTIONS(1734), - [anon_sym_POUNDdefine] = ACTIONS(1734), - [anon_sym_POUNDifdef] = ACTIONS(1734), - [anon_sym_POUNDifndef] = ACTIONS(1734), - [anon_sym_POUNDendif] = ACTIONS(1734), - [anon_sym_POUNDelse] = ACTIONS(1734), - [sym_preproc_directive] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_auto] = ACTIONS(1734), - [anon_sym_register] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_restrict] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [sym_function_specifier] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1739), [sym_comment] = ACTIONS(119), }, [748] = { - [sym_declaration] = STATE(678), - [sym__declaration_specifiers] = STATE(1078), - [sym__declarator] = STATE(262), - [sym__abstract_declarator] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(1741), + [anon_sym_POUNDinclude] = ACTIONS(1743), + [anon_sym_POUNDdefine] = ACTIONS(1743), + [anon_sym_POUNDifdef] = ACTIONS(1743), + [anon_sym_POUNDifndef] = ACTIONS(1743), + [anon_sym_POUNDendif] = ACTIONS(1743), + [anon_sym_POUNDelse] = ACTIONS(1743), + [sym_preproc_directive] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_typedef] = ACTIONS(1743), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_auto] = ACTIONS(1743), + [anon_sym_register] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_restrict] = ACTIONS(1743), + [anon_sym_volatile] = ACTIONS(1743), + [sym_function_specifier] = ACTIONS(1743), + [anon_sym_unsigned] = ACTIONS(1743), + [anon_sym_long] = ACTIONS(1743), + [anon_sym_short] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [sym_comment] = ACTIONS(119), + }, + [749] = { + [sym_declaration] = STATE(679), + [sym__declaration_specifiers] = STATE(1079), + [sym__declarator] = STATE(263), + [sym__abstract_declarator] = STATE(264), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), + [sym_abstract_array_declarator] = STATE(211), [sym_storage_class_specifier] = STATE(8), - [sym_type_qualifier] = STATE(953), - [sym__type_specifier] = STATE(1079), + [sym_type_qualifier] = STATE(954), + [sym__type_specifier] = STATE(1080), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_parameter_type_list] = STATE(795), - [sym_parameter_declaration] = STATE(224), - [sym__expression] = STATE(1080), + [sym_parameter_type_list] = STATE(796), + [sym_parameter_declaration] = STATE(225), + [sym__expression] = STATE(1081), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36308,17 +36385,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(799), + [sym_type_name] = STATE(800), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_array_declarator_repeat1] = STATE(203), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(645), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -36334,44 +36411,44 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1767), [sym_comment] = ACTIONS(119), }, - [749] = { - [aux_sym_preproc_params_repeat1] = STATE(742), - [aux_sym_parameter_type_list_repeat1] = STATE(230), - [anon_sym_COMMA] = ACTIONS(1760), - [anon_sym_RPAREN] = ACTIONS(1766), + [750] = { + [aux_sym_preproc_params_repeat1] = STATE(743), + [aux_sym_parameter_type_list_repeat1] = STATE(231), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1775), [sym_comment] = ACTIONS(119), }, - [750] = { - [sym__declaration_specifiers] = STATE(226), - [sym__declarator] = STATE(1033), + [751] = { + [sym__declaration_specifiers] = STATE(227), + [sym__declarator] = STATE(1034), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym_init_declarator] = STATE(1034), + [sym_init_declarator] = STATE(1035), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(227), + [sym__type_specifier] = STATE(228), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_enumerator] = STATE(454), - [sym_parameter_declaration] = STATE(1035), - [sym__expression] = STATE(1036), + [sym_enumerator] = STATE(455), + [sym_parameter_declaration] = STATE(1036), + [sym__expression] = STATE(1037), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36387,19 +36464,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(350), - [sym_designator] = STATE(345), + [sym_initializer_list] = STATE(351), + [sym_designator] = STATE(346), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym__initializer_list_contents_repeat1] = STATE(379), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(352), + [aux_sym__initializer_list_contents_repeat1] = STATE(380), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(359), [anon_sym_static] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), [anon_sym_auto] = ACTIONS(131), @@ -36414,163 +36491,163 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1793), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1795), - [sym_comment] = ACTIONS(119), - }, - [751] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(1021), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(1022), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LF] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_RPAREN] = ACTIONS(1816), - [sym_preproc_arg] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1854), - [anon_sym_EQ] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [sym_function_specifier] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_QMARK] = ACTIONS(1854), - [anon_sym_STAR_EQ] = ACTIONS(1854), - [anon_sym_SLASH_EQ] = ACTIONS(1854), - [anon_sym_PERCENT_EQ] = ACTIONS(1854), - [anon_sym_PLUS_EQ] = ACTIONS(1854), - [anon_sym_DASH_EQ] = ACTIONS(1854), - [anon_sym_LT_LT_EQ] = ACTIONS(1854), - [anon_sym_GT_GT_EQ] = ACTIONS(1854), - [anon_sym_AMP_EQ] = ACTIONS(1854), - [anon_sym_CARET_EQ] = ACTIONS(1854), - [anon_sym_PIPE_EQ] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1854), - [anon_sym_AMP_AMP] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_CARET] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_EQ_EQ] = ACTIONS(1854), - [anon_sym_BANG_EQ] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(1854), - [anon_sym_GT_EQ] = ACTIONS(1854), - [anon_sym_LT_LT] = ACTIONS(1936), - [anon_sym_GT_GT] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_sizeof] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_DASH_GT] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1964), - [sym_char_literal] = ACTIONS(1964), - [sym_string_literal] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [anon_sym_DOT] = ACTIONS(1802), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1804), [sym_comment] = ACTIONS(119), }, [752] = { - [ts_builtin_sym_end] = ACTIONS(1971), - [anon_sym_POUNDinclude] = ACTIONS(1975), - [anon_sym_POUNDdefine] = ACTIONS(1975), - [anon_sym_POUNDifdef] = ACTIONS(1975), - [anon_sym_POUNDifndef] = ACTIONS(1975), - [anon_sym_POUNDendif] = ACTIONS(1975), - [anon_sym_POUNDelse] = ACTIONS(1975), - [sym_preproc_directive] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_typedef] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1975), - [anon_sym_auto] = ACTIONS(1975), - [anon_sym_register] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [anon_sym_restrict] = ACTIONS(1975), - [anon_sym_volatile] = ACTIONS(1975), - [sym_function_specifier] = ACTIONS(1975), - [anon_sym_unsigned] = ACTIONS(1975), - [anon_sym_long] = ACTIONS(1975), - [anon_sym_short] = ACTIONS(1975), - [anon_sym_enum] = ACTIONS(1975), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_union] = ACTIONS(1975), - [sym_identifier] = ACTIONS(1979), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(1022), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(1023), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [sym_initializer_list] = STATE(334), + [anon_sym_LF] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1825), + [sym_preproc_arg] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [sym_function_specifier] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_STAR_EQ] = ACTIONS(1863), + [anon_sym_SLASH_EQ] = ACTIONS(1863), + [anon_sym_PERCENT_EQ] = ACTIONS(1863), + [anon_sym_PLUS_EQ] = ACTIONS(1863), + [anon_sym_DASH_EQ] = ACTIONS(1863), + [anon_sym_LT_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_GT_EQ] = ACTIONS(1863), + [anon_sym_AMP_EQ] = ACTIONS(1863), + [anon_sym_CARET_EQ] = ACTIONS(1863), + [anon_sym_PIPE_EQ] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_PLUS_PLUS] = ACTIONS(1962), + [anon_sym_sizeof] = ACTIONS(1970), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [sym_number_literal] = ACTIONS(1973), + [sym_char_literal] = ACTIONS(1973), + [sym_string_literal] = ACTIONS(1973), + [sym_identifier] = ACTIONS(1976), [sym_comment] = ACTIONS(119), }, [753] = { - [sym__expression] = STATE(1009), + [ts_builtin_sym_end] = ACTIONS(1980), + [anon_sym_POUNDinclude] = ACTIONS(1984), + [anon_sym_POUNDdefine] = ACTIONS(1984), + [anon_sym_POUNDifdef] = ACTIONS(1984), + [anon_sym_POUNDifndef] = ACTIONS(1984), + [anon_sym_POUNDendif] = ACTIONS(1984), + [anon_sym_POUNDelse] = ACTIONS(1984), + [sym_preproc_directive] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_auto] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [sym_function_specifier] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [sym_identifier] = ACTIONS(1988), + [sym_comment] = ACTIONS(119), + }, + [754] = { + [sym__expression] = STATE(1010), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36586,71 +36663,71 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(1983), - [anon_sym_POUNDinclude] = ACTIONS(1989), - [anon_sym_POUNDdefine] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(2009), - [anon_sym_POUNDifdef] = ACTIONS(1989), - [anon_sym_POUNDifndef] = ACTIONS(1989), - [anon_sym_POUNDendif] = ACTIONS(2011), - [anon_sym_POUNDelse] = ACTIONS(2011), - [sym_preproc_directive] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_typedef] = ACTIONS(2049), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_auto] = ACTIONS(2049), - [anon_sym_register] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_restrict] = ACTIONS(2094), - [anon_sym_volatile] = ACTIONS(2094), - [sym_function_specifier] = ACTIONS(2049), - [anon_sym_unsigned] = ACTIONS(2094), - [anon_sym_long] = ACTIONS(2094), - [anon_sym_short] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2113), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_goto] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_sizeof] = ACTIONS(2177), - [sym_number_literal] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2191), - [sym_string_literal] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(1992), + [anon_sym_POUNDinclude] = ACTIONS(1998), + [anon_sym_POUNDdefine] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2018), + [anon_sym_POUNDifdef] = ACTIONS(1998), + [anon_sym_POUNDifndef] = ACTIONS(1998), + [anon_sym_POUNDendif] = ACTIONS(2020), + [anon_sym_POUNDelse] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_typedef] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_auto] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_restrict] = ACTIONS(2103), + [anon_sym_volatile] = ACTIONS(2103), + [sym_function_specifier] = ACTIONS(2058), + [anon_sym_unsigned] = ACTIONS(2103), + [anon_sym_long] = ACTIONS(2103), + [anon_sym_short] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_switch] = ACTIONS(2058), + [anon_sym_case] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_goto] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2158), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_sizeof] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2200), + [sym_char_literal] = ACTIONS(2200), + [sym_string_literal] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2214), [sym_comment] = ACTIONS(119), }, - [754] = { - [sym__declarator] = STATE(911), - [sym__abstract_declarator] = STATE(260), + [755] = { + [sym__declarator] = STATE(912), + [sym__abstract_declarator] = STATE(261), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym__expression] = STATE(1002), + [sym_abstract_array_declarator] = STATE(211), + [sym__expression] = STATE(1003), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36666,28 +36743,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(2254), [sym_comment] = ACTIONS(119), }, - [755] = { + [756] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(995), + [sym__expression] = STATE(996), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36703,31 +36780,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(996), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(2247), - [anon_sym_RBRACK] = ACTIONS(2249), + [aux_sym_array_declarator_repeat1] = STATE(997), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_RBRACK] = ACTIONS(2258), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [756] = { + [757] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(824), + [sym__expression] = STATE(825), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36743,18 +36820,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(991), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), + [aux_sym_array_declarator_repeat1] = STATE(992), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), [anon_sym_static] = ACTIONS(155), - [anon_sym_RBRACK] = ACTIONS(2251), + [anon_sym_RBRACK] = ACTIONS(2260), [anon_sym_typedef] = ACTIONS(155), [anon_sym_extern] = ACTIONS(155), [anon_sym_auto] = ACTIONS(155), [anon_sym_register] = ACTIONS(155), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_restrict] = ACTIONS(2253), - [anon_sym_volatile] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2262), + [anon_sym_restrict] = ACTIONS(2262), + [anon_sym_volatile] = ACTIONS(2262), [sym_function_specifier] = ACTIONS(155), [anon_sym_unsigned] = ACTIONS(155), [anon_sym_long] = ACTIONS(155), @@ -36762,68 +36839,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(155), [anon_sym_union] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(2265), [sym_comment] = ACTIONS(119), }, - [757] = { - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_RBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(2270), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(548), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(2300), - [anon_sym_DASH_GT] = ACTIONS(548), + [758] = { + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(2279), + [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(2309), + [anon_sym_DASH_GT] = ACTIONS(555), [sym_comment] = ACTIONS(119), }, - [758] = { - [sym__expression] = STATE(988), + [759] = { + [sym__expression] = STATE(989), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36839,52 +36916,52 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(989), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(990), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [759] = { - [sym_declaration] = STATE(506), - [sym__declaration_specifiers] = STATE(507), - [sym_compound_statement] = STATE(508), + [760] = { + [sym_declaration] = STATE(507), + [sym__declaration_specifiers] = STATE(508), + [sym_compound_statement] = STATE(509), [sym_storage_class_specifier] = STATE(8), - [sym_type_qualifier] = STATE(953), - [sym__type_specifier] = STATE(954), + [sym_type_qualifier] = STATE(954), + [sym__type_specifier] = STATE(955), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), - [sym__enum_specifier_contents] = STATE(792), + [sym__enum_specifier_contents] = STATE(793), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(278), - [sym_enumerator] = STATE(450), - [sym__statement] = STATE(506), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(955), + [sym_struct_declaration] = STATE(279), + [sym_enumerator] = STATE(451), + [sym__statement] = STATE(507), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(956), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -36900,24 +36977,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(343), - [sym__initializer_list_contents] = STATE(344), - [sym_designator] = STATE(345), - [sym__empty_declaration] = STATE(506), + [sym_initializer_list] = STATE(344), + [sym__initializer_list_contents] = STATE(345), + [sym_designator] = STATE(346), + [sym__empty_declaration] = STATE(507), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), - [aux_sym_array_declarator_repeat1] = STATE(279), - [aux_sym_compound_statement_repeat1] = STATE(511), + [aux_sym_array_declarator_repeat1] = STATE(280), + [aux_sym_compound_statement_repeat1] = STATE(512), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym_struct_specifier_repeat1] = STATE(806), - [aux_sym__initializer_list_contents_repeat1] = STATE(346), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(352), + [aux_sym_struct_specifier_repeat1] = STATE(807), + [aux_sym__initializer_list_contents_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_LBRACK] = ACTIONS(359), [anon_sym_static] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2320), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), [anon_sym_auto] = ACTIONS(131), @@ -36932,212 +37009,169 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym_DOT] = ACTIONS(364), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(2323), - [sym_comment] = ACTIONS(119), - }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(2325), - [anon_sym_POUNDinclude] = ACTIONS(2328), - [anon_sym_POUNDdefine] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_RPAREN] = ACTIONS(2345), - [anon_sym_POUNDifdef] = ACTIONS(2328), - [anon_sym_POUNDifndef] = ACTIONS(2328), - [anon_sym_POUNDendif] = ACTIONS(2328), - [anon_sym_POUNDelse] = ACTIONS(2328), - [sym_preproc_directive] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2360), - [anon_sym_LBRACK] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_RBRACK] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_typedef] = ACTIONS(2328), - [anon_sym_extern] = 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(2345), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_goto] = ACTIONS(2328), - [anon_sym_QMARK] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_LT_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_GT_EQ] = ACTIONS(2374), - [anon_sym_AMP_EQ] = ACTIONS(2374), - [anon_sym_CARET_EQ] = ACTIONS(2374), - [anon_sym_PIPE_EQ] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_GT] = ACTIONS(2377), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_SLASH] = ACTIONS(2377), - [anon_sym_PERCENT] = ACTIONS(2377), - [anon_sym_DASH_DASH] = ACTIONS(2380), - [anon_sym_PLUS_PLUS] = ACTIONS(2380), - [anon_sym_sizeof] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2374), - [anon_sym_DASH_GT] = ACTIONS(2374), - [sym_number_literal] = ACTIONS(2328), - [sym_char_literal] = ACTIONS(2328), - [sym_string_literal] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [anon_sym_DOT] = ACTIONS(371), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(2332), [sym_comment] = ACTIONS(119), }, [761] = { - [anon_sym_static] = ACTIONS(2402), - [anon_sym_typedef] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_auto] = ACTIONS(2402), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_restrict] = ACTIONS(2402), - [anon_sym_volatile] = ACTIONS(2402), - [sym_function_specifier] = ACTIONS(2402), - [anon_sym_unsigned] = ACTIONS(2402), - [anon_sym_long] = ACTIONS(2402), - [anon_sym_short] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [sym_identifier] = ACTIONS(2405), + [ts_builtin_sym_end] = ACTIONS(2334), + [anon_sym_POUNDinclude] = ACTIONS(2337), + [anon_sym_POUNDdefine] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2354), + [anon_sym_RPAREN] = ACTIONS(2354), + [anon_sym_POUNDifdef] = ACTIONS(2337), + [anon_sym_POUNDifndef] = ACTIONS(2337), + [anon_sym_POUNDendif] = ACTIONS(2337), + [anon_sym_POUNDelse] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_RBRACK] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_auto] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [sym_function_specifier] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_COLON] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_STAR_EQ] = ACTIONS(2383), + [anon_sym_SLASH_EQ] = ACTIONS(2383), + [anon_sym_PERCENT_EQ] = ACTIONS(2383), + [anon_sym_PLUS_EQ] = ACTIONS(2383), + [anon_sym_DASH_EQ] = ACTIONS(2383), + [anon_sym_LT_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_GT_EQ] = ACTIONS(2383), + [anon_sym_AMP_EQ] = ACTIONS(2383), + [anon_sym_CARET_EQ] = ACTIONS(2383), + [anon_sym_PIPE_EQ] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_CARET] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2389), + [anon_sym_PLUS_PLUS] = ACTIONS(2389), + [anon_sym_sizeof] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_DASH_GT] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2337), + [sym_char_literal] = ACTIONS(2337), + [sym_string_literal] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2399), [sym_comment] = ACTIONS(119), }, [762] = { - [anon_sym_unsigned] = ACTIONS(2408), - [anon_sym_long] = ACTIONS(2408), - [anon_sym_short] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym_auto] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [sym_function_specifier] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2414), [sym_comment] = ACTIONS(119), }, [763] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(941), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(942), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(2417), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2417), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [anon_sym_COLON] = ACTIONS(2417), + [sym_identifier] = ACTIONS(2423), [sym_comment] = ACTIONS(119), }, [764] = { - [anon_sym_LPAREN] = ACTIONS(2416), - [sym_comment] = ACTIONS(119), - }, - [765] = { - [sym__expression] = STATE(935), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(942), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(943), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37153,24 +37187,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(2426), + [sym_comment] = ACTIONS(119), + }, + [765] = { + [anon_sym_LPAREN] = ACTIONS(2428), [sym_comment] = ACTIONS(119), }, [766] = { - [sym__expression] = STATE(837), + [sym__expression] = STATE(936), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37186,24 +37237,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [767] = { - [sym__expression] = STATE(934), + [sym__expression] = STATE(838), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37219,24 +37270,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [768] = { - [sym__expression] = STATE(933), + [sym__expression] = STATE(935), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37252,24 +37303,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [769] = { - [sym__expression] = STATE(932), + [sym__expression] = STATE(934), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37285,24 +37336,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [770] = { - [sym__expression] = STATE(836), + [sym__expression] = STATE(933), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37318,24 +37369,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [771] = { - [sym__expression] = STATE(931), + [sym__expression] = STATE(837), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37351,24 +37402,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [772] = { - [sym__expression] = STATE(930), + [sym__expression] = STATE(932), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37384,24 +37435,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [773] = { - [sym__expression] = STATE(929), + [sym__expression] = STATE(931), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37417,24 +37468,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [774] = { - [sym__expression] = STATE(928), + [sym__expression] = STATE(930), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37450,24 +37501,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [775] = { - [sym__expression] = STATE(927), + [sym__expression] = STATE(929), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37483,24 +37534,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [776] = { - [sym__expression] = STATE(835), + [sym__expression] = STATE(928), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37516,24 +37567,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [777] = { - [sym__expression] = STATE(838), + [sym__expression] = STATE(836), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37549,59 +37600,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_COMMA] = ACTIONS(444), - [anon_sym_RPAREN] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(444), - [anon_sym_RBRACK] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_STAR_EQ] = ACTIONS(444), - [anon_sym_SLASH_EQ] = ACTIONS(444), - [anon_sym_PERCENT_EQ] = ACTIONS(444), - [anon_sym_PLUS_EQ] = ACTIONS(444), - [anon_sym_DASH_EQ] = ACTIONS(444), - [anon_sym_LT_LT_EQ] = ACTIONS(444), - [anon_sym_GT_GT_EQ] = ACTIONS(444), - [anon_sym_AMP_EQ] = ACTIONS(444), - [anon_sym_CARET_EQ] = ACTIONS(444), - [anon_sym_PIPE_EQ] = ACTIONS(444), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_PIPE_PIPE] = ACTIONS(444), - [anon_sym_AMP_AMP] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(444), - [anon_sym_BANG_EQ] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(446), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(2429), - [anon_sym_PLUS_PLUS] = ACTIONS(2429), - [anon_sym_sizeof] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(444), - [anon_sym_DASH_GT] = ACTIONS(444), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [778] = { - [sym__expression] = STATE(926), + [sym__expression] = STATE(839), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37617,139 +37633,207 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(451), + [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(2433), + [anon_sym_PIPE_PIPE] = ACTIONS(451), + [anon_sym_AMP_AMP] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE] = ACTIONS(2246), + [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(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_DASH_DASH] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(2441), + [anon_sym_sizeof] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_DASH_GT] = ACTIONS(451), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [779] = { - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(927), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [780] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [anon_sym_POUNDinclude] = ACTIONS(1734), - [anon_sym_POUNDdefine] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_POUNDifdef] = ACTIONS(1734), - [anon_sym_POUNDifndef] = ACTIONS(1734), - [anon_sym_POUNDendif] = ACTIONS(1734), - [anon_sym_POUNDelse] = ACTIONS(1734), - [sym_preproc_directive] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_auto] = ACTIONS(1734), - [anon_sym_register] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_restrict] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [sym_function_specifier] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [sym_identifier] = ACTIONS(1736), + [sym_identifier] = ACTIONS(2446), [sym_comment] = ACTIONS(119), }, [781] = { - [sym__preproc_statement] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(1741), + [anon_sym_POUNDinclude] = ACTIONS(1743), + [anon_sym_POUNDdefine] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_POUNDifdef] = ACTIONS(1743), + [anon_sym_POUNDifndef] = ACTIONS(1743), + [anon_sym_POUNDendif] = ACTIONS(1743), + [anon_sym_POUNDelse] = ACTIONS(1743), + [sym_preproc_directive] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_RBRACK] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_typedef] = ACTIONS(1743), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_auto] = ACTIONS(1743), + [anon_sym_register] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_restrict] = ACTIONS(1743), + [anon_sym_volatile] = ACTIONS(1743), + [sym_function_specifier] = ACTIONS(1743), + [anon_sym_unsigned] = ACTIONS(1743), + [anon_sym_long] = ACTIONS(1743), + [anon_sym_short] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_COLON] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(375), + [anon_sym_PLUS_PLUS] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DASH_GT] = ACTIONS(375), + [sym_identifier] = ACTIONS(1745), + [sym_comment] = ACTIONS(119), + }, + [782] = { + [sym__preproc_statement] = STATE(719), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), - [sym_preproc_params] = STATE(733), + [sym_preproc_params] = STATE(734), [sym_preproc_call] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(719), - [sym_function_definition] = STATE(718), - [sym_declaration] = STATE(718), - [sym__declaration_specifiers] = STATE(720), + [sym_preproc_else] = STATE(720), + [sym_function_definition] = STATE(719), + [sym_declaration] = STATE(719), + [sym__declaration_specifiers] = STATE(721), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(721), + [sym__type_specifier] = STATE(722), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), [sym_macro_type_specifier] = STATE(19), - [aux_sym_preproc_params_repeat1] = STATE(742), - [aux_sym_preproc_ifdef_repeat1] = STATE(722), + [aux_sym_preproc_params_repeat1] = STATE(743), + [aux_sym_preproc_ifdef_repeat1] = STATE(723), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), [anon_sym_POUNDinclude] = ACTIONS(123), [anon_sym_POUNDdefine] = ACTIONS(125), - [anon_sym_LF] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(2446), - [anon_sym_RPAREN] = ACTIONS(2459), - [sym_preproc_arg] = ACTIONS(1660), + [anon_sym_LF] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2471), + [sym_preproc_arg] = ACTIONS(1669), [anon_sym_POUNDifdef] = ACTIONS(127), [anon_sym_POUNDifndef] = ACTIONS(127), - [anon_sym_POUNDendif] = ACTIONS(1616), - [anon_sym_POUNDelse] = ACTIONS(1618), + [anon_sym_POUNDendif] = ACTIONS(1625), + [anon_sym_POUNDelse] = ACTIONS(1627), [sym_preproc_directive] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2501), [anon_sym_static] = ACTIONS(131), - [anon_sym_RBRACK] = ACTIONS(2499), - [anon_sym_EQ] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2523), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), [anon_sym_auto] = ACTIONS(131), @@ -37764,75 +37848,75 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(2515), - [anon_sym_QMARK] = ACTIONS(2499), - [anon_sym_STAR_EQ] = ACTIONS(2499), - [anon_sym_SLASH_EQ] = ACTIONS(2499), - [anon_sym_PERCENT_EQ] = ACTIONS(2499), - [anon_sym_PLUS_EQ] = ACTIONS(2499), - [anon_sym_DASH_EQ] = ACTIONS(2499), - [anon_sym_LT_LT_EQ] = ACTIONS(2499), - [anon_sym_GT_GT_EQ] = ACTIONS(2499), - [anon_sym_AMP_EQ] = ACTIONS(2499), - [anon_sym_CARET_EQ] = ACTIONS(2499), - [anon_sym_PIPE_EQ] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_PIPE_PIPE] = ACTIONS(2499), - [anon_sym_AMP_AMP] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_CARET] = ACTIONS(2525), - [anon_sym_EQ_EQ] = ACTIONS(2499), - [anon_sym_BANG_EQ] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2499), - [anon_sym_GT_EQ] = ACTIONS(2499), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_GT_GT] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_PERCENT] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2532), - [sym_comment] = ACTIONS(119), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(2539), - [anon_sym_POUNDinclude] = ACTIONS(2542), - [anon_sym_POUNDdefine] = ACTIONS(2542), - [anon_sym_POUNDifdef] = ACTIONS(2542), - [anon_sym_POUNDifndef] = ACTIONS(2542), - [anon_sym_POUNDendif] = ACTIONS(2547), - [anon_sym_POUNDelse] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2550), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_typedef] = ACTIONS(2542), - [anon_sym_extern] = ACTIONS(2542), - [anon_sym_auto] = ACTIONS(2542), - [anon_sym_register] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_restrict] = ACTIONS(2542), - [anon_sym_volatile] = ACTIONS(2542), - [sym_function_specifier] = ACTIONS(2542), - [anon_sym_unsigned] = ACTIONS(2542), - [anon_sym_long] = ACTIONS(2542), - [anon_sym_short] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_struct] = ACTIONS(2542), - [anon_sym_union] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2550), + [anon_sym_COLON] = ACTIONS(2527), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_STAR_EQ] = ACTIONS(2511), + [anon_sym_SLASH_EQ] = ACTIONS(2511), + [anon_sym_PERCENT_EQ] = ACTIONS(2511), + [anon_sym_PLUS_EQ] = ACTIONS(2511), + [anon_sym_DASH_EQ] = ACTIONS(2511), + [anon_sym_LT_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_GT_EQ] = ACTIONS(2511), + [anon_sym_AMP_EQ] = ACTIONS(2511), + [anon_sym_CARET_EQ] = ACTIONS(2511), + [anon_sym_PIPE_EQ] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2537), + [anon_sym_CARET] = ACTIONS(2537), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_GT] = ACTIONS(2537), + [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2511), + [anon_sym_LT_LT] = ACTIONS(2537), + [anon_sym_GT_GT] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_SLASH] = ACTIONS(2537), + [anon_sym_PERCENT] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DOT] = ACTIONS(2540), + [anon_sym_DASH_GT] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2544), [sym_comment] = ACTIONS(119), }, [783] = { - [anon_sym_POUNDendif] = ACTIONS(2555), + [ts_builtin_sym_end] = ACTIONS(2551), + [anon_sym_POUNDinclude] = ACTIONS(2554), + [anon_sym_POUNDdefine] = ACTIONS(2554), + [anon_sym_POUNDifdef] = ACTIONS(2554), + [anon_sym_POUNDifndef] = ACTIONS(2554), + [anon_sym_POUNDendif] = ACTIONS(2559), + [anon_sym_POUNDelse] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2562), + [anon_sym_static] = ACTIONS(2554), + [anon_sym_typedef] = ACTIONS(2554), + [anon_sym_extern] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2554), + [anon_sym_register] = ACTIONS(2554), + [anon_sym_const] = ACTIONS(2554), + [anon_sym_restrict] = ACTIONS(2554), + [anon_sym_volatile] = ACTIONS(2554), + [sym_function_specifier] = ACTIONS(2554), + [anon_sym_unsigned] = ACTIONS(2554), + [anon_sym_long] = ACTIONS(2554), + [anon_sym_short] = ACTIONS(2554), + [anon_sym_enum] = ACTIONS(2554), + [anon_sym_struct] = ACTIONS(2554), + [anon_sym_union] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2562), [sym_comment] = ACTIONS(119), }, [784] = { - [sym__expression] = STATE(693), + [anon_sym_POUNDendif] = ACTIONS(2567), + [sym_comment] = ACTIONS(119), + }, + [785] = { + [sym__expression] = STATE(694), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -37848,61 +37932,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(2539), - [anon_sym_POUNDinclude] = ACTIONS(2542), - [anon_sym_POUNDdefine] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2557), - [anon_sym_POUNDifdef] = ACTIONS(2542), - [anon_sym_POUNDifndef] = ACTIONS(2542), - [anon_sym_POUNDendif] = ACTIONS(2547), - [anon_sym_POUNDelse] = ACTIONS(2547), - [sym_preproc_directive] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_typedef] = ACTIONS(2569), - [anon_sym_extern] = ACTIONS(2569), - [anon_sym_auto] = ACTIONS(2569), - [anon_sym_register] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_restrict] = ACTIONS(2569), - [anon_sym_volatile] = ACTIONS(2569), - [sym_function_specifier] = ACTIONS(2569), - [anon_sym_unsigned] = ACTIONS(2569), - [anon_sym_long] = ACTIONS(2569), - [anon_sym_short] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_struct] = ACTIONS(2569), - [anon_sym_union] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_switch] = ACTIONS(2579), - [anon_sym_case] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_break] = ACTIONS(2579), - [anon_sym_continue] = ACTIONS(2579), - [anon_sym_goto] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_PLUS] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_DASH_DASH] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2594), - [anon_sym_sizeof] = ACTIONS(2598), - [sym_number_literal] = ACTIONS(2602), - [sym_char_literal] = ACTIONS(2602), - [sym_string_literal] = ACTIONS(2602), - [sym_identifier] = ACTIONS(2606), + [ts_builtin_sym_end] = ACTIONS(2551), + [anon_sym_POUNDinclude] = ACTIONS(2554), + [anon_sym_POUNDdefine] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_POUNDifdef] = ACTIONS(2554), + [anon_sym_POUNDifndef] = ACTIONS(2554), + [anon_sym_POUNDendif] = ACTIONS(2559), + [anon_sym_POUNDelse] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_typedef] = ACTIONS(2581), + [anon_sym_extern] = ACTIONS(2581), + [anon_sym_auto] = ACTIONS(2581), + [anon_sym_register] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_restrict] = ACTIONS(2581), + [anon_sym_volatile] = ACTIONS(2581), + [sym_function_specifier] = ACTIONS(2581), + [anon_sym_unsigned] = ACTIONS(2581), + [anon_sym_long] = ACTIONS(2581), + [anon_sym_short] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_struct] = ACTIONS(2581), + [anon_sym_union] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2606), + [anon_sym_sizeof] = ACTIONS(2610), + [sym_number_literal] = ACTIONS(2614), + [sym_char_literal] = ACTIONS(2614), + [sym_string_literal] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2618), [sym_comment] = ACTIONS(119), }, - [785] = { - [sym__type_specifier] = STATE(913), + [786] = { + [sym__type_specifier] = STATE(914), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -37918,389 +38002,389 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [786] = { - [sym_compound_statement] = STATE(906), - [aux_sym_declaration_repeat1] = STATE(804), - [aux_sym_struct_declaration_repeat1] = STATE(807), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_COMMA] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_COLON] = ACTIONS(2647), - [sym_comment] = ACTIONS(119), - }, [787] = { - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2666), + [sym_compound_statement] = STATE(907), + [aux_sym_declaration_repeat1] = STATE(805), + [aux_sym_struct_declaration_repeat1] = STATE(808), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_COMMA] = ACTIONS(2629), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_COLON] = ACTIONS(2659), [sym_comment] = ACTIONS(119), }, [788] = { - [aux_sym_declaration_repeat1] = STATE(804), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_COMMA] = ACTIONS(2667), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2678), [sym_comment] = ACTIONS(119), }, [789] = { - [ts_builtin_sym_end] = ACTIONS(2677), - [anon_sym_POUNDinclude] = ACTIONS(2680), - [anon_sym_POUNDdefine] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_POUNDifdef] = ACTIONS(2680), - [anon_sym_POUNDifndef] = ACTIONS(2680), - [anon_sym_POUNDendif] = ACTIONS(2680), - [anon_sym_POUNDelse] = ACTIONS(2680), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(2686), - [anon_sym_extern] = ACTIONS(2686), - [anon_sym_auto] = ACTIONS(2686), - [anon_sym_register] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_restrict] = ACTIONS(2686), - [anon_sym_volatile] = ACTIONS(2686), - [sym_function_specifier] = ACTIONS(2686), - [anon_sym_unsigned] = ACTIONS(2686), - [anon_sym_long] = ACTIONS(2686), - [anon_sym_short] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2686), - [anon_sym_union] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1256), - [sym_char_literal] = ACTIONS(1256), - [sym_string_literal] = ACTIONS(1256), - [sym_identifier] = ACTIONS(2690), + [aux_sym_declaration_repeat1] = STATE(805), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2685), [sym_comment] = ACTIONS(119), }, [790] = { - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_RBRACK] = ACTIONS(2694), - [anon_sym_typedef] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_auto] = ACTIONS(2402), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_restrict] = ACTIONS(2697), - [anon_sym_volatile] = ACTIONS(2697), - [sym_function_specifier] = ACTIONS(2402), - [anon_sym_unsigned] = ACTIONS(2697), - [anon_sym_long] = ACTIONS(2697), - [anon_sym_short] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), - [anon_sym_struct] = ACTIONS(2697), - [anon_sym_union] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_sizeof] = ACTIONS(2702), - [sym_number_literal] = ACTIONS(2702), - [sym_char_literal] = ACTIONS(2702), - [sym_string_literal] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2705), + [ts_builtin_sym_end] = ACTIONS(2689), + [anon_sym_POUNDinclude] = ACTIONS(2692), + [anon_sym_POUNDdefine] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_POUNDifdef] = ACTIONS(2692), + [anon_sym_POUNDifndef] = ACTIONS(2692), + [anon_sym_POUNDendif] = ACTIONS(2692), + [anon_sym_POUNDelse] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2698), + [anon_sym_auto] = ACTIONS(2698), + [anon_sym_register] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [anon_sym_restrict] = ACTIONS(2698), + [anon_sym_volatile] = ACTIONS(2698), + [sym_function_specifier] = ACTIONS(2698), + [anon_sym_unsigned] = ACTIONS(2698), + [anon_sym_long] = ACTIONS(2698), + [anon_sym_short] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2698), + [anon_sym_union] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = 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(2702), [sym_comment] = ACTIONS(119), }, [791] = { - [sym__declarator] = STATE(899), - [sym__abstract_declarator] = STATE(900), - [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), - [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym_init_declarator] = STATE(901), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(638), - [anon_sym_COLON] = ACTIONS(2723), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_RBRACK] = ACTIONS(2706), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym_auto] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [sym_function_specifier] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_sizeof] = ACTIONS(2714), + [sym_number_literal] = ACTIONS(2714), + [sym_char_literal] = ACTIONS(2714), + [sym_string_literal] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2717), [sym_comment] = ACTIONS(119), }, [792] = { - [anon_sym_COMMA] = ACTIONS(2725), - [anon_sym_RBRACE] = ACTIONS(2727), + [sym__declarator] = STATE(900), + [sym__abstract_declarator] = STATE(901), + [sym_pointer_declarator] = STATE(30), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_function_declarator] = STATE(30), + [sym_abstract_function_declarator] = STATE(211), + [sym_array_declarator] = STATE(30), + [sym_abstract_array_declarator] = STATE(211), + [sym_init_declarator] = STATE(902), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_COLON] = ACTIONS(2735), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [793] = { - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_restrict] = ACTIONS(2732), - [anon_sym_volatile] = ACTIONS(2732), - [anon_sym_unsigned] = ACTIONS(2732), - [anon_sym_long] = ACTIONS(2732), - [anon_sym_short] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2735), + [anon_sym_COMMA] = ACTIONS(2737), + [anon_sym_RBRACE] = ACTIONS(2739), [sym_comment] = ACTIONS(119), }, [794] = { - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_restrict] = ACTIONS(2744), + [anon_sym_volatile] = ACTIONS(2744), + [anon_sym_unsigned] = ACTIONS(2744), + [anon_sym_long] = ACTIONS(2744), + [anon_sym_short] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(119), }, [795] = { - [anon_sym_RPAREN] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), [sym_comment] = ACTIONS(119), }, [796] = { - [aux_sym_parameter_type_list_repeat1] = STATE(230), - [anon_sym_COMMA] = ACTIONS(2743), - [anon_sym_RPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2753), [sym_comment] = ACTIONS(119), }, [797] = { - [anon_sym_LPAREN] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2766), - [anon_sym_extern] = ACTIONS(2766), - [anon_sym_auto] = ACTIONS(2766), - [anon_sym_register] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_restrict] = ACTIONS(2766), - [anon_sym_volatile] = ACTIONS(2766), - [sym_function_specifier] = ACTIONS(2766), - [anon_sym_unsigned] = ACTIONS(2766), - [anon_sym_long] = ACTIONS(2766), - [anon_sym_short] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_else] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_sizeof] = ACTIONS(2766), - [sym_number_literal] = ACTIONS(2766), - [sym_char_literal] = ACTIONS(2766), - [sym_string_literal] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2811), + [aux_sym_parameter_type_list_repeat1] = STATE(231), + [anon_sym_COMMA] = ACTIONS(2755), + [anon_sym_RPAREN] = ACTIONS(2759), [sym_comment] = ACTIONS(119), }, [798] = { - [aux_sym_for_statement_repeat1] = STATE(808), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2842), - [anon_sym_RPAREN] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_RBRACK] = ACTIONS(2932), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2999), - [anon_sym_STAR_EQ] = ACTIONS(3015), - [anon_sym_SLASH_EQ] = ACTIONS(3015), - [anon_sym_PERCENT_EQ] = ACTIONS(3015), - [anon_sym_PLUS_EQ] = ACTIONS(3015), - [anon_sym_DASH_EQ] = ACTIONS(3015), - [anon_sym_LT_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_GT_EQ] = ACTIONS(3015), - [anon_sym_AMP_EQ] = ACTIONS(3015), - [anon_sym_CARET_EQ] = ACTIONS(3015), - [anon_sym_PIPE_EQ] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2778), + [anon_sym_extern] = ACTIONS(2778), + [anon_sym_auto] = ACTIONS(2778), + [anon_sym_register] = ACTIONS(2778), + [anon_sym_const] = ACTIONS(2778), + [anon_sym_restrict] = ACTIONS(2778), + [anon_sym_volatile] = ACTIONS(2778), + [sym_function_specifier] = ACTIONS(2778), + [anon_sym_unsigned] = ACTIONS(2778), + [anon_sym_long] = ACTIONS(2778), + [anon_sym_short] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2778), + [anon_sym_struct] = ACTIONS(2778), + [anon_sym_union] = ACTIONS(2778), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2778), + [anon_sym_case] = ACTIONS(2778), + [anon_sym_default] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2778), + [anon_sym_return] = ACTIONS(2778), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2778), + [anon_sym_goto] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2778), + [sym_number_literal] = ACTIONS(2778), + [sym_char_literal] = ACTIONS(2778), + [sym_string_literal] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2823), [sym_comment] = ACTIONS(119), }, [799] = { - [anon_sym_RPAREN] = ACTIONS(3159), + [aux_sym_for_statement_repeat1] = STATE(809), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_RBRACK] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_RBRACE] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(3011), + [anon_sym_STAR_EQ] = ACTIONS(3027), + [anon_sym_SLASH_EQ] = ACTIONS(3027), + [anon_sym_PERCENT_EQ] = ACTIONS(3027), + [anon_sym_PLUS_EQ] = ACTIONS(3027), + [anon_sym_DASH_EQ] = ACTIONS(3027), + [anon_sym_LT_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_GT_EQ] = ACTIONS(3027), + [anon_sym_AMP_EQ] = ACTIONS(3027), + [anon_sym_CARET_EQ] = ACTIONS(3027), + [anon_sym_PIPE_EQ] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_EQ_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3107), + [anon_sym_GT_EQ] = ACTIONS(3107), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_DASH_GT] = ACTIONS(3155), [sym_comment] = ACTIONS(119), }, [800] = { - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_EQ] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_QMARK] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PERCENT_EQ] = ACTIONS(938), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_LT_LT_EQ] = ACTIONS(938), - [anon_sym_GT_GT_EQ] = ACTIONS(938), - [anon_sym_AMP_EQ] = ACTIONS(938), - [anon_sym_CARET_EQ] = ACTIONS(938), - [anon_sym_PIPE_EQ] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_PIPE_PIPE] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_GT_GT] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(938), - [anon_sym_DASH_GT] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(3171), [sym_comment] = ACTIONS(119), }, [801] = { - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PERCENT_EQ] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_CARET_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [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(947), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [sym_comment] = ACTIONS(119), }, [802] = { - [ts_builtin_sym_end] = ACTIONS(2539), - [anon_sym_POUNDinclude] = ACTIONS(3178), - [anon_sym_POUNDdefine] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_POUNDifdef] = ACTIONS(3178), - [anon_sym_POUNDifndef] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_typedef] = ACTIONS(3184), - [anon_sym_extern] = ACTIONS(3184), - [anon_sym_auto] = ACTIONS(3184), - [anon_sym_register] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_restrict] = ACTIONS(3184), - [anon_sym_volatile] = ACTIONS(3184), - [sym_function_specifier] = ACTIONS(3184), - [anon_sym_unsigned] = ACTIONS(3184), - [anon_sym_long] = ACTIONS(3184), - [anon_sym_short] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), - [anon_sym_struct] = ACTIONS(3184), - [anon_sym_union] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_switch] = ACTIONS(2579), - [anon_sym_case] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_break] = ACTIONS(2579), - [anon_sym_continue] = ACTIONS(2579), - [anon_sym_goto] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_TILDE] = ACTIONS(2576), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_sizeof] = ACTIONS(2579), - [sym_number_literal] = ACTIONS(2579), - [sym_char_literal] = ACTIONS(2579), - [sym_string_literal] = ACTIONS(2579), - [sym_identifier] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), [sym_comment] = ACTIONS(119), }, [803] = { - [sym__preproc_statement] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(2551), + [anon_sym_POUNDinclude] = ACTIONS(3190), + [anon_sym_POUNDdefine] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_POUNDifdef] = ACTIONS(3190), + [anon_sym_POUNDifndef] = ACTIONS(3190), + [sym_preproc_directive] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_typedef] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym_auto] = ACTIONS(3196), + [anon_sym_register] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_restrict] = ACTIONS(3196), + [anon_sym_volatile] = ACTIONS(3196), + [sym_function_specifier] = ACTIONS(3196), + [anon_sym_unsigned] = ACTIONS(3196), + [anon_sym_long] = ACTIONS(3196), + [anon_sym_short] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2591), + [sym_char_literal] = ACTIONS(2591), + [sym_string_literal] = ACTIONS(2591), + [sym_identifier] = ACTIONS(3201), + [sym_comment] = ACTIONS(119), + }, + [804] = { + [sym__preproc_statement] = STATE(725), [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), [sym_preproc_call] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(725), - [sym_function_definition] = STATE(724), - [sym_declaration] = STATE(724), - [sym__declaration_specifiers] = STATE(720), + [sym_preproc_else] = STATE(726), + [sym_function_definition] = STATE(725), + [sym_declaration] = STATE(725), + [sym__declaration_specifiers] = STATE(721), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(721), + [sym__type_specifier] = STATE(722), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -38312,8 +38396,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(125), [anon_sym_POUNDifdef] = ACTIONS(127), [anon_sym_POUNDifndef] = ACTIONS(127), - [anon_sym_POUNDendif] = ACTIONS(3194), - [anon_sym_POUNDelse] = ACTIONS(1618), + [anon_sym_POUNDendif] = ACTIONS(3206), + [anon_sym_POUNDelse] = ACTIONS(1627), [sym_preproc_directive] = ACTIONS(129), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), @@ -38333,19 +38417,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [804] = { - [anon_sym_COMMA] = ACTIONS(278), - [anon_sym_SEMI] = ACTIONS(3197), + [805] = { + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(3209), [sym_comment] = ACTIONS(119), }, - [805] = { - [sym_type_qualifier] = STATE(204), - [sym__type_specifier] = STATE(823), + [806] = { + [sym_type_qualifier] = STATE(205), + [sym__type_specifier] = STATE(824), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__expression] = STATE(824), + [sym__expression] = STATE(825), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -38363,10 +38447,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(51), [sym_macro_type_specifier] = STATE(19), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_RBRACK] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_RBRACK] = ACTIONS(3213), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -38376,32 +38460,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(3215), [sym_comment] = ACTIONS(119), }, - [806] = { + [807] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(282), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3217), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -38414,26 +38498,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [807] = { - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_COLON] = ACTIONS(3209), - [sym_comment] = ACTIONS(119), - }, [808] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), [sym_comment] = ACTIONS(119), }, [809] = { - [sym_designator] = STATE(348), - [anon_sym_LBRACK] = ACTIONS(352), - [anon_sym_EQ] = ACTIONS(3213), - [anon_sym_DOT] = ACTIONS(364), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(3223), [sym_comment] = ACTIONS(119), }, [810] = { - [sym__expression] = STATE(811), + [sym_designator] = STATE(349), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_EQ] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(371), + [sym_comment] = ACTIONS(119), + }, + [811] = { + [sym__expression] = STATE(812), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -38449,227 +38533,227 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(812), - [anon_sym_LPAREN] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_TILDE] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_DASH_DASH] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(360), - [anon_sym_sizeof] = ACTIONS(362), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [811] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [sym_initializer_list] = STATE(813), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_sizeof] = ACTIONS(369), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [812] = { - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [813] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(814), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_COLON] = ACTIONS(600), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_sizeof] = ACTIONS(858), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(600), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), [sym_comment] = ACTIONS(119), }, [814] = { - [anon_sym_LPAREN] = ACTIONS(3233), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(815), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RPAREN] = ACTIONS(607), [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typedef] = ACTIONS(3237), - [anon_sym_extern] = ACTIONS(3237), - [anon_sym_auto] = ACTIONS(3237), - [anon_sym_register] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_restrict] = ACTIONS(3237), - [anon_sym_volatile] = ACTIONS(3237), - [sym_function_specifier] = ACTIONS(3237), - [anon_sym_unsigned] = ACTIONS(3237), - [anon_sym_long] = ACTIONS(3237), - [anon_sym_short] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_union] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_goto] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3237), - [sym_number_literal] = ACTIONS(3237), - [sym_char_literal] = ACTIONS(3237), - [sym_string_literal] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [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(3236), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_CARET] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(861), + [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(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_sizeof] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(607), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [815] = { + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3245), [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_restrict] = ACTIONS(3248), - [anon_sym_volatile] = ACTIONS(3248), - [anon_sym_unsigned] = ACTIONS(3248), - [anon_sym_long] = ACTIONS(3248), - [anon_sym_short] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_union] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3251), + [anon_sym_typedef] = ACTIONS(3249), + [anon_sym_extern] = ACTIONS(3249), + [anon_sym_auto] = ACTIONS(3249), + [anon_sym_register] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_restrict] = ACTIONS(3249), + [anon_sym_volatile] = ACTIONS(3249), + [sym_function_specifier] = ACTIONS(3249), + [anon_sym_unsigned] = ACTIONS(3249), + [anon_sym_long] = ACTIONS(3249), + [anon_sym_short] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_union] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_case] = ACTIONS(3249), + [anon_sym_default] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_goto] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_sizeof] = ACTIONS(3249), + [sym_number_literal] = ACTIONS(3249), + [sym_char_literal] = ACTIONS(3249), + [sym_string_literal] = ACTIONS(3249), + [sym_identifier] = ACTIONS(3253), [sym_comment] = ACTIONS(119), }, [816] = { - [sym__expression] = STATE(817), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_restrict] = ACTIONS(3260), + [anon_sym_volatile] = ACTIONS(3260), + [anon_sym_unsigned] = ACTIONS(3260), + [anon_sym_long] = ACTIONS(3260), + [anon_sym_short] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3260), + [anon_sym_union] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3263), + [sym_comment] = ACTIONS(119), + }, + [817] = { + [sym__expression] = STATE(818), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -38685,89 +38769,89 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [817] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [818] = { - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [sym_identifier] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [819] = { - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_COMMA] = ACTIONS(3265), - [anon_sym_RPAREN] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_COLON] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_restrict] = ACTIONS(3271), + [anon_sym_volatile] = ACTIONS(3271), + [anon_sym_unsigned] = ACTIONS(3271), + [anon_sym_long] = ACTIONS(3271), + [anon_sym_short] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3271), + [anon_sym_union] = ACTIONS(3271), + [sym_identifier] = ACTIONS(3274), [sym_comment] = ACTIONS(119), }, [820] = { - [sym__expression] = STATE(827), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RPAREN] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3282), + [sym_comment] = ACTIONS(119), + }, + [821] = { + [sym__expression] = STATE(828), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -38783,269 +38867,269 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [821] = { - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [822] = { - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(188), - [anon_sym_SEMI] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(188), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [sym_identifier] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_RPAREN] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_EQ] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COLON] = ACTIONS(3293), [sym_comment] = ACTIONS(119), }, [823] = { - [sym__declarator] = STATE(287), - [sym__abstract_declarator] = STATE(209), - [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), - [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(638), - [anon_sym_COLON] = ACTIONS(838), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(190), + [anon_sym_SEMI] = ACTIONS(190), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(627), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(190), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_identifier] = ACTIONS(192), [sym_comment] = ACTIONS(119), }, [824] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(3286), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [sym__declarator] = STATE(288), + [sym__abstract_declarator] = STATE(210), + [sym_pointer_declarator] = STATE(30), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_function_declarator] = STATE(30), + [sym_abstract_function_declarator] = STATE(211), + [sym_array_declarator] = STATE(30), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_COLON] = ACTIONS(847), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [825] = { - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3288), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_COLON] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(3298), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [826] = { - [sym__declarator] = STATE(259), - [sym__abstract_declarator] = STATE(260), - [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), - [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(2230), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3306), [sym_comment] = ACTIONS(119), }, [827] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(3300), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [sym__declarator] = STATE(260), + [sym__abstract_declarator] = STATE(261), + [sym_pointer_declarator] = STATE(30), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_function_declarator] = STATE(30), + [sym_abstract_function_declarator] = STATE(211), + [sym_array_declarator] = STATE(30), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(2239), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [828] = { - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_COMMA] = ACTIONS(3302), - [anon_sym_RPAREN] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(3312), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [829] = { - [ts_builtin_sym_end] = ACTIONS(3306), - [anon_sym_POUNDinclude] = ACTIONS(3309), - [anon_sym_POUNDdefine] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_POUNDifdef] = ACTIONS(3309), - [anon_sym_POUNDifndef] = ACTIONS(3309), - [anon_sym_POUNDendif] = ACTIONS(3309), - [anon_sym_POUNDelse] = ACTIONS(3309), - [sym_preproc_directive] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typedef] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(3309), - [anon_sym_auto] = ACTIONS(3309), - [anon_sym_register] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_restrict] = ACTIONS(3309), - [anon_sym_volatile] = ACTIONS(3309), - [sym_function_specifier] = ACTIONS(3309), - [anon_sym_unsigned] = ACTIONS(3309), - [anon_sym_long] = ACTIONS(3309), - [anon_sym_short] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3309), - [anon_sym_union] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_goto] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_sizeof] = ACTIONS(3309), - [sym_number_literal] = ACTIONS(3309), - [sym_char_literal] = ACTIONS(3309), - [sym_string_literal] = ACTIONS(3309), - [sym_identifier] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(771), [sym_comment] = ACTIONS(119), }, [830] = { - [sym__expression] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(3318), + [anon_sym_POUNDinclude] = ACTIONS(3321), + [anon_sym_POUNDdefine] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_POUNDifdef] = ACTIONS(3321), + [anon_sym_POUNDifndef] = ACTIONS(3321), + [anon_sym_POUNDendif] = ACTIONS(3321), + [anon_sym_POUNDelse] = ACTIONS(3321), + [sym_preproc_directive] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typedef] = ACTIONS(3321), + [anon_sym_extern] = ACTIONS(3321), + [anon_sym_auto] = ACTIONS(3321), + [anon_sym_register] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_restrict] = ACTIONS(3321), + [anon_sym_volatile] = ACTIONS(3321), + [sym_function_specifier] = ACTIONS(3321), + [anon_sym_unsigned] = ACTIONS(3321), + [anon_sym_long] = ACTIONS(3321), + [anon_sym_short] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_goto] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3321), + [sym_number_literal] = ACTIONS(3321), + [sym_char_literal] = ACTIONS(3321), + [sym_string_literal] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3324), + [sym_comment] = ACTIONS(119), + }, + [831] = { + [sym__expression] = STATE(835), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -39061,60 +39145,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_COLON] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_sizeof] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [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(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [831] = { + [832] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -39137,12 +39221,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(840), + [sym_type_name] = STATE(841), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -39152,22 +39236,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, - [832] = { - [sym__expression] = STATE(839), + [833] = { + [sym__expression] = STATE(840), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -39183,24 +39267,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [833] = { - [sym__expression] = STATE(838), + [834] = { + [sym__expression] = STATE(839), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -39216,298 +39300,298 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [834] = { - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_COLON] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_LT_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_GT_EQ] = ACTIONS(3342), - [anon_sym_AMP_EQ] = ACTIONS(3342), - [anon_sym_CARET_EQ] = ACTIONS(3342), - [anon_sym_PIPE_EQ] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3345), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(3360), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3366), - [anon_sym_DASH_GT] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [835] = { - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(3381), - [anon_sym_STAR_EQ] = ACTIONS(3384), - [anon_sym_SLASH_EQ] = ACTIONS(3384), - [anon_sym_PERCENT_EQ] = ACTIONS(3384), - [anon_sym_PLUS_EQ] = ACTIONS(3384), - [anon_sym_DASH_EQ] = ACTIONS(3384), - [anon_sym_LT_LT_EQ] = ACTIONS(3384), - [anon_sym_GT_GT_EQ] = ACTIONS(3384), - [anon_sym_AMP_EQ] = ACTIONS(3384), - [anon_sym_CARET_EQ] = ACTIONS(3384), - [anon_sym_PIPE_EQ] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(3396), - [anon_sym_LT_EQ] = ACTIONS(3399), - [anon_sym_GT_EQ] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_SLASH] = ACTIONS(3372), - [anon_sym_PERCENT] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_DASH_GT] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_STAR_EQ] = ACTIONS(3354), + [anon_sym_SLASH_EQ] = ACTIONS(3354), + [anon_sym_PERCENT_EQ] = ACTIONS(3354), + [anon_sym_PLUS_EQ] = ACTIONS(3354), + [anon_sym_DASH_EQ] = ACTIONS(3354), + [anon_sym_LT_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_GT_EQ] = ACTIONS(3354), + [anon_sym_AMP_EQ] = ACTIONS(3354), + [anon_sym_CARET_EQ] = ACTIONS(3354), + [anon_sym_PIPE_EQ] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3363), + [anon_sym_BANG_EQ] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_LT_LT] = ACTIONS(3372), + [anon_sym_GT_GT] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_DASH_GT] = ACTIONS(3378), [sym_comment] = ACTIONS(119), }, [836] = { - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_COLON] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_STAR_EQ] = ACTIONS(3426), - [anon_sym_SLASH_EQ] = ACTIONS(3426), - [anon_sym_PERCENT_EQ] = ACTIONS(3426), - [anon_sym_PLUS_EQ] = ACTIONS(3426), - [anon_sym_DASH_EQ] = ACTIONS(3426), - [anon_sym_LT_LT_EQ] = ACTIONS(3426), - [anon_sym_GT_GT_EQ] = ACTIONS(3426), - [anon_sym_AMP_EQ] = ACTIONS(3426), - [anon_sym_CARET_EQ] = ACTIONS(3426), - [anon_sym_PIPE_EQ] = ACTIONS(3426), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3432), - [anon_sym_AMP_AMP] = ACTIONS(3432), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3438), - [anon_sym_GT] = ACTIONS(3438), - [anon_sym_LT_EQ] = ACTIONS(3441), - [anon_sym_GT_EQ] = ACTIONS(3441), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3414), - [anon_sym_SLASH] = ACTIONS(3414), - [anon_sym_PERCENT] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3450), - [anon_sym_DASH_GT] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(3393), + [anon_sym_STAR_EQ] = ACTIONS(3396), + [anon_sym_SLASH_EQ] = ACTIONS(3396), + [anon_sym_PERCENT_EQ] = ACTIONS(3396), + [anon_sym_PLUS_EQ] = ACTIONS(3396), + [anon_sym_DASH_EQ] = ACTIONS(3396), + [anon_sym_LT_LT_EQ] = ACTIONS(3396), + [anon_sym_GT_GT_EQ] = ACTIONS(3396), + [anon_sym_AMP_EQ] = ACTIONS(3396), + [anon_sym_CARET_EQ] = ACTIONS(3396), + [anon_sym_PIPE_EQ] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3399), + [anon_sym_CARET] = ACTIONS(3399), + [anon_sym_EQ_EQ] = ACTIONS(3405), + [anon_sym_BANG_EQ] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_GT] = ACTIONS(3408), + [anon_sym_LT_EQ] = ACTIONS(3411), + [anon_sym_GT_EQ] = ACTIONS(3411), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3384), + [anon_sym_PERCENT] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3420), [sym_comment] = ACTIONS(119), }, [837] = { - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_STAR_EQ] = ACTIONS(3468), - [anon_sym_SLASH_EQ] = ACTIONS(3468), - [anon_sym_PERCENT_EQ] = ACTIONS(3468), - [anon_sym_PLUS_EQ] = ACTIONS(3468), - [anon_sym_DASH_EQ] = ACTIONS(3468), - [anon_sym_LT_LT_EQ] = ACTIONS(3468), - [anon_sym_GT_GT_EQ] = ACTIONS(3468), - [anon_sym_AMP_EQ] = ACTIONS(3468), - [anon_sym_CARET_EQ] = ACTIONS(3468), - [anon_sym_PIPE_EQ] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_PIPE] = ACTIONS(3471), - [anon_sym_CARET] = ACTIONS(3471), - [anon_sym_EQ_EQ] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3480), - [anon_sym_GT] = ACTIONS(3480), - [anon_sym_LT_EQ] = ACTIONS(3483), - [anon_sym_GT_EQ] = ACTIONS(3483), - [anon_sym_LT_LT] = ACTIONS(3486), - [anon_sym_GT_GT] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_SLASH] = ACTIONS(3456), - [anon_sym_PERCENT] = ACTIONS(3456), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_DASH_GT] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_COLON] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(3435), + [anon_sym_STAR_EQ] = ACTIONS(3438), + [anon_sym_SLASH_EQ] = ACTIONS(3438), + [anon_sym_PERCENT_EQ] = ACTIONS(3438), + [anon_sym_PLUS_EQ] = ACTIONS(3438), + [anon_sym_DASH_EQ] = ACTIONS(3438), + [anon_sym_LT_LT_EQ] = ACTIONS(3438), + [anon_sym_GT_GT_EQ] = ACTIONS(3438), + [anon_sym_AMP_EQ] = ACTIONS(3438), + [anon_sym_CARET_EQ] = ACTIONS(3438), + [anon_sym_PIPE_EQ] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3441), + [anon_sym_PIPE_PIPE] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3441), + [anon_sym_CARET] = ACTIONS(3441), + [anon_sym_EQ_EQ] = ACTIONS(3447), + [anon_sym_BANG_EQ] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3450), + [anon_sym_GT] = ACTIONS(3450), + [anon_sym_LT_EQ] = ACTIONS(3453), + [anon_sym_GT_EQ] = ACTIONS(3453), + [anon_sym_LT_LT] = ACTIONS(3456), + [anon_sym_GT_GT] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3462), + [anon_sym_DASH_GT] = ACTIONS(3462), [sym_comment] = ACTIONS(119), }, [838] = { - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(3504), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_COLON] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(3507), - [anon_sym_STAR_EQ] = ACTIONS(3510), - [anon_sym_SLASH_EQ] = ACTIONS(3510), - [anon_sym_PERCENT_EQ] = ACTIONS(3510), - [anon_sym_PLUS_EQ] = ACTIONS(3510), - [anon_sym_DASH_EQ] = ACTIONS(3510), - [anon_sym_LT_LT_EQ] = ACTIONS(3510), - [anon_sym_GT_GT_EQ] = ACTIONS(3510), - [anon_sym_AMP_EQ] = ACTIONS(3510), - [anon_sym_CARET_EQ] = ACTIONS(3510), - [anon_sym_PIPE_EQ] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_CARET] = ACTIONS(3513), - [anon_sym_EQ_EQ] = ACTIONS(3519), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_GT] = ACTIONS(3522), - [anon_sym_LT_EQ] = ACTIONS(3525), - [anon_sym_GT_EQ] = ACTIONS(3525), - [anon_sym_LT_LT] = ACTIONS(3528), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_SLASH] = ACTIONS(3498), - [anon_sym_PERCENT] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3531), - [anon_sym_PLUS_PLUS] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_DASH_GT] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3471), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_COLON] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(3477), + [anon_sym_STAR_EQ] = ACTIONS(3480), + [anon_sym_SLASH_EQ] = ACTIONS(3480), + [anon_sym_PERCENT_EQ] = ACTIONS(3480), + [anon_sym_PLUS_EQ] = ACTIONS(3480), + [anon_sym_DASH_EQ] = ACTIONS(3480), + [anon_sym_LT_LT_EQ] = ACTIONS(3480), + [anon_sym_GT_GT_EQ] = ACTIONS(3480), + [anon_sym_AMP_EQ] = ACTIONS(3480), + [anon_sym_CARET_EQ] = ACTIONS(3480), + [anon_sym_PIPE_EQ] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_CARET] = ACTIONS(3483), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_GT] = ACTIONS(3492), + [anon_sym_LT_EQ] = ACTIONS(3495), + [anon_sym_GT_EQ] = ACTIONS(3495), + [anon_sym_LT_LT] = ACTIONS(3498), + [anon_sym_GT_GT] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_PERCENT] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3501), + [anon_sym_PLUS_PLUS] = ACTIONS(3501), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_DASH_GT] = ACTIONS(3504), [sym_comment] = ACTIONS(119), }, [839] = { - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_EQ] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(3549), - [anon_sym_STAR_EQ] = ACTIONS(3552), - [anon_sym_SLASH_EQ] = ACTIONS(3552), - [anon_sym_PERCENT_EQ] = ACTIONS(3552), - [anon_sym_PLUS_EQ] = ACTIONS(3552), - [anon_sym_DASH_EQ] = ACTIONS(3552), - [anon_sym_LT_LT_EQ] = ACTIONS(3552), - [anon_sym_GT_GT_EQ] = ACTIONS(3552), - [anon_sym_AMP_EQ] = ACTIONS(3552), - [anon_sym_CARET_EQ] = ACTIONS(3552), - [anon_sym_PIPE_EQ] = ACTIONS(3552), - [anon_sym_AMP] = ACTIONS(3555), - [anon_sym_PIPE_PIPE] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_PIPE] = ACTIONS(3555), - [anon_sym_CARET] = ACTIONS(3555), - [anon_sym_EQ_EQ] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3561), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3567), - [anon_sym_GT_EQ] = ACTIONS(3567), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_SLASH] = ACTIONS(3540), - [anon_sym_PERCENT] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_DASH_GT] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(3519), + [anon_sym_STAR_EQ] = ACTIONS(3522), + [anon_sym_SLASH_EQ] = ACTIONS(3522), + [anon_sym_PERCENT_EQ] = ACTIONS(3522), + [anon_sym_PLUS_EQ] = ACTIONS(3522), + [anon_sym_DASH_EQ] = ACTIONS(3522), + [anon_sym_LT_LT_EQ] = ACTIONS(3522), + [anon_sym_GT_GT_EQ] = ACTIONS(3522), + [anon_sym_AMP_EQ] = ACTIONS(3522), + [anon_sym_CARET_EQ] = ACTIONS(3522), + [anon_sym_PIPE_EQ] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_PIPE_PIPE] = ACTIONS(3528), + [anon_sym_AMP_AMP] = ACTIONS(3528), + [anon_sym_PIPE] = ACTIONS(3525), + [anon_sym_CARET] = ACTIONS(3525), + [anon_sym_EQ_EQ] = ACTIONS(3531), + [anon_sym_BANG_EQ] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_GT] = ACTIONS(3534), + [anon_sym_LT_EQ] = ACTIONS(3537), + [anon_sym_GT_EQ] = ACTIONS(3537), + [anon_sym_LT_LT] = ACTIONS(3540), + [anon_sym_GT_GT] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_PERCENT] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_DOT] = ACTIONS(3546), + [anon_sym_DASH_GT] = ACTIONS(3546), [sym_comment] = ACTIONS(119), }, [840] = { - [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_STAR_EQ] = ACTIONS(3564), + [anon_sym_SLASH_EQ] = ACTIONS(3564), + [anon_sym_PERCENT_EQ] = ACTIONS(3564), + [anon_sym_PLUS_EQ] = ACTIONS(3564), + [anon_sym_DASH_EQ] = ACTIONS(3564), + [anon_sym_LT_LT_EQ] = ACTIONS(3564), + [anon_sym_GT_GT_EQ] = ACTIONS(3564), + [anon_sym_AMP_EQ] = ACTIONS(3564), + [anon_sym_CARET_EQ] = ACTIONS(3564), + [anon_sym_PIPE_EQ] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_PIPE_PIPE] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3570), + [anon_sym_PIPE] = ACTIONS(3567), + [anon_sym_CARET] = ACTIONS(3567), + [anon_sym_EQ_EQ] = ACTIONS(3573), + [anon_sym_BANG_EQ] = ACTIONS(3573), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_GT] = ACTIONS(3576), + [anon_sym_LT_EQ] = ACTIONS(3579), + [anon_sym_GT_EQ] = ACTIONS(3579), + [anon_sym_LT_LT] = ACTIONS(3582), + [anon_sym_GT_GT] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_PERCENT] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3585), + [anon_sym_PLUS_PLUS] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3588), [sym_comment] = ACTIONS(119), }, [841] = { - [sym__expression] = STATE(834), + [anon_sym_RPAREN] = ACTIONS(3591), + [sym_comment] = ACTIONS(119), + }, + [842] = { + [sym__expression] = STATE(835), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -39523,136 +39607,136 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [842] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(891), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_COMMA] = ACTIONS(3586), - [anon_sym_RPAREN] = ACTIONS(3586), - [anon_sym_SEMI] = ACTIONS(3589), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3599), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [sym_function_specifier] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_STAR_EQ] = ACTIONS(3586), - [anon_sym_SLASH_EQ] = ACTIONS(3586), - [anon_sym_PERCENT_EQ] = ACTIONS(3586), - [anon_sym_PLUS_EQ] = ACTIONS(3586), - [anon_sym_DASH_EQ] = ACTIONS(3586), - [anon_sym_LT_LT_EQ] = ACTIONS(3586), - [anon_sym_GT_GT_EQ] = ACTIONS(3586), - [anon_sym_AMP_EQ] = ACTIONS(3586), - [anon_sym_CARET_EQ] = ACTIONS(3586), - [anon_sym_PIPE_EQ] = ACTIONS(3586), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_PIPE] = ACTIONS(3599), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3599), - [anon_sym_GT] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3586), - [anon_sym_GT_EQ] = ACTIONS(3586), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3615), - [anon_sym_DASH] = ACTIONS(3615), - [anon_sym_SLASH] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3625), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_DASH_GT] = ACTIONS(3586), - [sym_number_literal] = ACTIONS(1964), - [sym_char_literal] = ACTIONS(1964), - [sym_string_literal] = ACTIONS(1964), - [sym_identifier] = ACTIONS(3628), + [843] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(892), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [anon_sym_LPAREN] = ACTIONS(3593), + [anon_sym_COMMA] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3611), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3617), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [sym_function_specifier] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_STAR_EQ] = ACTIONS(3598), + [anon_sym_SLASH_EQ] = ACTIONS(3598), + [anon_sym_PERCENT_EQ] = ACTIONS(3598), + [anon_sym_PLUS_EQ] = ACTIONS(3598), + [anon_sym_DASH_EQ] = ACTIONS(3598), + [anon_sym_LT_LT_EQ] = ACTIONS(3598), + [anon_sym_GT_GT_EQ] = ACTIONS(3598), + [anon_sym_AMP_EQ] = ACTIONS(3598), + [anon_sym_CARET_EQ] = ACTIONS(3598), + [anon_sym_PIPE_EQ] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_PIPE] = ACTIONS(3611), + [anon_sym_CARET] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_EQ_EQ] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_LT] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3598), + [anon_sym_GT_EQ] = ACTIONS(3598), + [anon_sym_LT_LT] = ACTIONS(3611), + [anon_sym_GT_GT] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_SLASH] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_DASH_GT] = ACTIONS(3598), + [sym_number_literal] = ACTIONS(1973), + [sym_char_literal] = ACTIONS(1973), + [sym_string_literal] = ACTIONS(1973), + [sym_identifier] = ACTIONS(3640), [sym_comment] = ACTIONS(119), }, - [843] = { - [sym__expression] = STATE(855), + [844] = { + [sym__expression] = STATE(856), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -39668,115 +39752,115 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_RPAREN] = ACTIONS(3635), - [anon_sym_SEMI] = ACTIONS(3637), - [anon_sym_STAR] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_typedef] = ACTIONS(3645), - [anon_sym_extern] = ACTIONS(3645), - [anon_sym_auto] = ACTIONS(3645), - [anon_sym_register] = ACTIONS(3645), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [sym_function_specifier] = ACTIONS(3645), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3645), - [anon_sym_else] = ACTIONS(3645), - [anon_sym_switch] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(3645), - [anon_sym_default] = ACTIONS(3645), - [anon_sym_while] = ACTIONS(3645), - [anon_sym_do] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3645), - [anon_sym_return] = ACTIONS(3645), - [anon_sym_break] = ACTIONS(3645), - [anon_sym_continue] = ACTIONS(3645), - [anon_sym_goto] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3641), - [anon_sym_BANG] = ACTIONS(3665), - [anon_sym_TILDE] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3673), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_sizeof] = ACTIONS(3681), - [sym_number_literal] = ACTIONS(3685), - [sym_char_literal] = ACTIONS(3685), - [sym_string_literal] = ACTIONS(3685), - [sym_identifier] = ACTIONS(3689), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_RPAREN] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3653), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym_auto] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_restrict] = ACTIONS(3670), + [anon_sym_volatile] = ACTIONS(3670), + [sym_function_specifier] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3670), + [anon_sym_long] = ACTIONS(3670), + [anon_sym_short] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(3670), + [anon_sym_union] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3657), + [anon_sym_else] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_case] = ACTIONS(3657), + [anon_sym_default] = ACTIONS(3657), + [anon_sym_while] = ACTIONS(3657), + [anon_sym_do] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3657), + [anon_sym_return] = ACTIONS(3657), + [anon_sym_break] = ACTIONS(3657), + [anon_sym_continue] = ACTIONS(3657), + [anon_sym_goto] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_BANG] = ACTIONS(3677), + [anon_sym_TILDE] = ACTIONS(3681), + [anon_sym_PLUS] = ACTIONS(3685), + [anon_sym_DASH] = ACTIONS(3685), + [anon_sym_DASH_DASH] = ACTIONS(3689), + [anon_sym_PLUS_PLUS] = ACTIONS(3689), + [anon_sym_sizeof] = ACTIONS(3693), + [sym_number_literal] = ACTIONS(3697), + [sym_char_literal] = ACTIONS(3697), + [sym_string_literal] = ACTIONS(3697), + [sym_identifier] = ACTIONS(3701), [sym_comment] = ACTIONS(119), }, - [844] = { - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(3711), - [anon_sym_RBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3727), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(3706), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(548), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(2300), - [anon_sym_DASH_GT] = ACTIONS(548), + [845] = { + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(3723), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3739), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3718), + [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(2309), + [anon_sym_DASH_GT] = ACTIONS(555), [sym_comment] = ACTIONS(119), }, - [845] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(602), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(847), + [846] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(603), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(848), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -39792,193 +39876,133 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(2414), - [sym_comment] = ACTIONS(119), - }, - [846] = { - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(2426), [sym_comment] = ACTIONS(119), }, [847] = { - [anon_sym_LPAREN] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(3737), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_COLON] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(3749), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3752), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3758), - [anon_sym_AMP_AMP] = ACTIONS(3758), - [anon_sym_PIPE] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(3761), - [anon_sym_BANG_EQ] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3767), - [anon_sym_GT_EQ] = ACTIONS(3767), - [anon_sym_LT_LT] = ACTIONS(3770), - [anon_sym_GT_GT] = ACTIONS(3770), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3773), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3776), - [anon_sym_DASH_GT] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(3743), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [848] = { - [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(200), - [sym_sized_type_specifier] = STATE(19), - [sym_enum_specifier] = STATE(19), - [sym_struct_specifier] = STATE(19), - [sym_union_specifier] = STATE(19), - [sym__expression] = STATE(201), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(889), - [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_const] = ACTIONS(133), - [anon_sym_restrict] = ACTIONS(133), - [anon_sym_volatile] = ACTIONS(133), - [anon_sym_unsigned] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_struct] = ACTIONS(141), - [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(3749), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_RBRACK] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_COLON] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(3761), + [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(3767), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_PIPE] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), + [anon_sym_EQ_EQ] = ACTIONS(3773), + [anon_sym_BANG_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_GT] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3779), + [anon_sym_GT_EQ] = ACTIONS(3779), + [anon_sym_LT_LT] = ACTIONS(3782), + [anon_sym_GT_GT] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_SLASH] = ACTIONS(3752), + [anon_sym_PERCENT] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3785), + [anon_sym_PLUS_PLUS] = ACTIONS(3785), + [anon_sym_DOT] = ACTIONS(3788), + [anon_sym_DASH_GT] = ACTIONS(3788), [sym_comment] = ACTIONS(119), }, [849] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(888), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(19), + [sym_enum_specifier] = STATE(19), + [sym_struct_specifier] = STATE(19), + [sym_union_specifier] = STATE(19), + [sym__expression] = STATE(201), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -39994,37 +40018,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [sym_type_name] = STATE(890), + [sym_macro_type_specifier] = STATE(19), + [aux_sym_array_declarator_repeat1] = STATE(203), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_const] = ACTIONS(133), + [anon_sym_restrict] = ACTIONS(133), + [anon_sym_volatile] = ACTIONS(133), + [anon_sym_unsigned] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_struct] = ACTIONS(141), + [anon_sym_union] = ACTIONS(143), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [850] = { - [sym__expression] = STATE(887), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(889), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40040,24 +40078,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [851] = { - [sym__expression] = STATE(886), + [sym__expression] = STATE(888), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40073,24 +40124,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [852] = { - [sym__expression] = STATE(885), + [sym__expression] = STATE(887), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40106,24 +40157,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [853] = { - [sym__expression] = STATE(884), + [sym__expression] = STATE(886), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40139,24 +40190,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [854] = { - [sym__expression] = STATE(880), + [sym__expression] = STATE(885), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40172,81 +40223,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3781), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [855] = { - [aux_sym_for_statement_repeat1] = STATE(865), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(3783), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(3787), - [anon_sym_QMARK] = ACTIONS(3789), - [anon_sym_STAR_EQ] = ACTIONS(3791), - [anon_sym_SLASH_EQ] = ACTIONS(3791), - [anon_sym_PERCENT_EQ] = ACTIONS(3791), - [anon_sym_PLUS_EQ] = ACTIONS(3791), - [anon_sym_DASH_EQ] = ACTIONS(3791), - [anon_sym_LT_LT_EQ] = ACTIONS(3791), - [anon_sym_GT_GT_EQ] = ACTIONS(3791), - [anon_sym_AMP_EQ] = ACTIONS(3791), - [anon_sym_CARET_EQ] = ACTIONS(3791), - [anon_sym_PIPE_EQ] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3797), - [anon_sym_BANG_EQ] = ACTIONS(3797), - [anon_sym_LT] = ACTIONS(3799), - [anon_sym_GT] = ACTIONS(3799), - [anon_sym_LT_EQ] = ACTIONS(3801), - [anon_sym_GT_EQ] = ACTIONS(3801), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3785), - [anon_sym_DASH] = ACTIONS(3785), - [anon_sym_SLASH] = ACTIONS(3785), - [anon_sym_PERCENT] = ACTIONS(3785), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), - [sym_comment] = ACTIONS(119), - }, - [856] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(878), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [sym__expression] = STATE(881), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40262,37 +40256,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(119), + }, + [856] = { + [aux_sym_for_statement_repeat1] = STATE(866), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_SEMI] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(3799), + [anon_sym_QMARK] = ACTIONS(3801), + [anon_sym_STAR_EQ] = ACTIONS(3803), + [anon_sym_SLASH_EQ] = ACTIONS(3803), + [anon_sym_PERCENT_EQ] = ACTIONS(3803), + [anon_sym_PLUS_EQ] = ACTIONS(3803), + [anon_sym_DASH_EQ] = ACTIONS(3803), + [anon_sym_LT_LT_EQ] = ACTIONS(3803), + [anon_sym_GT_GT_EQ] = ACTIONS(3803), + [anon_sym_AMP_EQ] = ACTIONS(3803), + [anon_sym_CARET_EQ] = ACTIONS(3803), + [anon_sym_PIPE_EQ] = ACTIONS(3803), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_PIPE_PIPE] = ACTIONS(3807), + [anon_sym_AMP_AMP] = ACTIONS(3807), + [anon_sym_PIPE] = ACTIONS(3805), + [anon_sym_CARET] = ACTIONS(3805), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(3811), + [anon_sym_GT] = ACTIONS(3811), + [anon_sym_LT_EQ] = ACTIONS(3813), + [anon_sym_GT_EQ] = ACTIONS(3813), + [anon_sym_LT_LT] = ACTIONS(3815), + [anon_sym_GT_GT] = ACTIONS(3815), + [anon_sym_PLUS] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_SLASH] = ACTIONS(3797), + [anon_sym_PERCENT] = ACTIONS(3797), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [857] = { - [sym__expression] = STATE(868), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(879), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40308,24 +40346,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [858] = { - [sym__expression] = STATE(874), + [sym__expression] = STATE(869), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40341,20 +40392,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [859] = { @@ -40374,24 +40425,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [860] = { - [sym__expression] = STATE(872), + [sym__expression] = STATE(876), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40407,20 +40458,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [861] = { @@ -40440,24 +40491,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [862] = { - [sym__expression] = STATE(871), + [sym__expression] = STATE(874), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40473,24 +40524,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [863] = { - [sym__expression] = STATE(870), + [sym__expression] = STATE(872), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40506,24 +40557,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [864] = { - [sym__expression] = STATE(869), + [sym__expression] = STATE(871), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40539,43 +40590,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [865] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(3805), - [sym_comment] = ACTIONS(119), - }, - [866] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(867), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [sym__expression] = STATE(870), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -40591,418 +40623,470 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(119), + }, + [866] = { + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(3817), [sym_comment] = ACTIONS(119), }, [867] = { - [anon_sym_LPAREN] = ACTIONS(3807), - [anon_sym_SEMI] = ACTIONS(3807), - [anon_sym_STAR] = ACTIONS(3807), - [anon_sym_static] = ACTIONS(3810), - [anon_sym_LBRACE] = ACTIONS(3807), - [anon_sym_RBRACE] = ACTIONS(3807), - [anon_sym_typedef] = ACTIONS(3810), - [anon_sym_extern] = ACTIONS(3810), - [anon_sym_auto] = ACTIONS(3810), - [anon_sym_register] = ACTIONS(3810), - [anon_sym_const] = ACTIONS(3810), - [anon_sym_restrict] = ACTIONS(3810), - [anon_sym_volatile] = ACTIONS(3810), - [sym_function_specifier] = ACTIONS(3810), - [anon_sym_unsigned] = ACTIONS(3810), - [anon_sym_long] = ACTIONS(3810), - [anon_sym_short] = ACTIONS(3810), - [anon_sym_enum] = ACTIONS(3810), - [anon_sym_struct] = ACTIONS(3810), - [anon_sym_union] = ACTIONS(3810), - [anon_sym_if] = ACTIONS(3810), - [anon_sym_else] = ACTIONS(3810), - [anon_sym_switch] = ACTIONS(3810), - [anon_sym_case] = ACTIONS(3810), - [anon_sym_default] = ACTIONS(3810), - [anon_sym_while] = ACTIONS(3810), - [anon_sym_do] = ACTIONS(3810), - [anon_sym_for] = ACTIONS(3810), - [anon_sym_return] = ACTIONS(3810), - [anon_sym_break] = ACTIONS(3810), - [anon_sym_continue] = ACTIONS(3810), - [anon_sym_goto] = ACTIONS(3810), - [anon_sym_AMP] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3807), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3810), - [anon_sym_DASH] = ACTIONS(3810), - [anon_sym_DASH_DASH] = ACTIONS(3807), - [anon_sym_PLUS_PLUS] = ACTIONS(3807), - [anon_sym_sizeof] = ACTIONS(3810), - [sym_number_literal] = ACTIONS(3810), - [sym_char_literal] = ACTIONS(3810), - [sym_string_literal] = ACTIONS(3810), - [sym_identifier] = ACTIONS(3813), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(868), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [868] = { - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3819), - [anon_sym_QMARK] = ACTIONS(3822), - [anon_sym_STAR_EQ] = ACTIONS(3825), - [anon_sym_SLASH_EQ] = ACTIONS(3825), - [anon_sym_PERCENT_EQ] = ACTIONS(3825), - [anon_sym_PLUS_EQ] = ACTIONS(3825), - [anon_sym_DASH_EQ] = ACTIONS(3825), - [anon_sym_LT_LT_EQ] = ACTIONS(3825), - [anon_sym_GT_GT_EQ] = ACTIONS(3825), - [anon_sym_AMP_EQ] = ACTIONS(3825), - [anon_sym_CARET_EQ] = ACTIONS(3825), - [anon_sym_PIPE_EQ] = ACTIONS(3825), - [anon_sym_AMP] = ACTIONS(3828), - [anon_sym_PIPE_PIPE] = ACTIONS(3831), - [anon_sym_AMP_AMP] = ACTIONS(3831), - [anon_sym_PIPE] = ACTIONS(3828), - [anon_sym_CARET] = ACTIONS(3828), - [anon_sym_EQ_EQ] = ACTIONS(3834), - [anon_sym_BANG_EQ] = ACTIONS(3834), - [anon_sym_LT] = ACTIONS(3837), - [anon_sym_GT] = ACTIONS(3837), - [anon_sym_LT_EQ] = ACTIONS(3840), - [anon_sym_GT_EQ] = ACTIONS(3840), - [anon_sym_LT_LT] = ACTIONS(3843), - [anon_sym_GT_GT] = ACTIONS(3843), - [anon_sym_PLUS] = ACTIONS(3816), - [anon_sym_DASH] = ACTIONS(3816), - [anon_sym_SLASH] = ACTIONS(3816), - [anon_sym_PERCENT] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_DASH_GT] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3819), + [anon_sym_SEMI] = ACTIONS(3819), + [anon_sym_STAR] = ACTIONS(3819), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3819), + [anon_sym_RBRACE] = ACTIONS(3819), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym_auto] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [sym_function_specifier] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [anon_sym_case] = ACTIONS(3822), + [anon_sym_default] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_goto] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3819), + [anon_sym_BANG] = ACTIONS(3819), + [anon_sym_TILDE] = ACTIONS(3819), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3819), + [anon_sym_PLUS_PLUS] = ACTIONS(3819), + [anon_sym_sizeof] = ACTIONS(3822), + [sym_number_literal] = ACTIONS(3822), + [sym_char_literal] = ACTIONS(3822), + [sym_string_literal] = ACTIONS(3822), + [sym_identifier] = ACTIONS(3825), [sym_comment] = ACTIONS(119), }, [869] = { - [anon_sym_LPAREN] = ACTIONS(3846), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_LBRACK] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(3855), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_STAR_EQ] = ACTIONS(3861), - [anon_sym_SLASH_EQ] = ACTIONS(3861), - [anon_sym_PERCENT_EQ] = ACTIONS(3861), - [anon_sym_PLUS_EQ] = ACTIONS(3861), - [anon_sym_DASH_EQ] = ACTIONS(3861), - [anon_sym_LT_LT_EQ] = ACTIONS(3861), - [anon_sym_GT_GT_EQ] = ACTIONS(3861), - [anon_sym_AMP_EQ] = ACTIONS(3861), - [anon_sym_CARET_EQ] = ACTIONS(3861), - [anon_sym_PIPE_EQ] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3864), - [anon_sym_PIPE_PIPE] = ACTIONS(3867), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE] = ACTIONS(3864), - [anon_sym_CARET] = ACTIONS(3864), - [anon_sym_EQ_EQ] = ACTIONS(3870), - [anon_sym_BANG_EQ] = ACTIONS(3870), - [anon_sym_LT] = ACTIONS(3873), - [anon_sym_GT] = ACTIONS(3873), - [anon_sym_LT_EQ] = ACTIONS(3876), - [anon_sym_GT_EQ] = ACTIONS(3876), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3885), - [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_QMARK] = ACTIONS(3834), + [anon_sym_STAR_EQ] = ACTIONS(3837), + [anon_sym_SLASH_EQ] = ACTIONS(3837), + [anon_sym_PERCENT_EQ] = ACTIONS(3837), + [anon_sym_PLUS_EQ] = ACTIONS(3837), + [anon_sym_DASH_EQ] = ACTIONS(3837), + [anon_sym_LT_LT_EQ] = ACTIONS(3837), + [anon_sym_GT_GT_EQ] = ACTIONS(3837), + [anon_sym_AMP_EQ] = ACTIONS(3837), + [anon_sym_CARET_EQ] = ACTIONS(3837), + [anon_sym_PIPE_EQ] = ACTIONS(3837), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3843), + [anon_sym_AMP_AMP] = ACTIONS(3843), + [anon_sym_PIPE] = ACTIONS(3840), + [anon_sym_CARET] = ACTIONS(3840), + [anon_sym_EQ_EQ] = ACTIONS(3846), + [anon_sym_BANG_EQ] = ACTIONS(3846), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_LT_EQ] = ACTIONS(3852), + [anon_sym_GT_EQ] = ACTIONS(3852), + [anon_sym_LT_LT] = ACTIONS(3855), + [anon_sym_GT_GT] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(3828), + [anon_sym_DASH] = ACTIONS(3828), + [anon_sym_SLASH] = ACTIONS(3828), + [anon_sym_PERCENT] = ACTIONS(3828), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3420), [sym_comment] = ACTIONS(119), }, [870] = { - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3897), - [anon_sym_QMARK] = ACTIONS(3900), - [anon_sym_STAR_EQ] = ACTIONS(3903), - [anon_sym_SLASH_EQ] = ACTIONS(3903), - [anon_sym_PERCENT_EQ] = ACTIONS(3903), - [anon_sym_PLUS_EQ] = ACTIONS(3903), - [anon_sym_DASH_EQ] = ACTIONS(3903), - [anon_sym_LT_LT_EQ] = ACTIONS(3903), - [anon_sym_GT_GT_EQ] = ACTIONS(3903), - [anon_sym_AMP_EQ] = ACTIONS(3903), - [anon_sym_CARET_EQ] = ACTIONS(3903), - [anon_sym_PIPE_EQ] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3909), - [anon_sym_PIPE] = ACTIONS(3906), - [anon_sym_CARET] = ACTIONS(3906), - [anon_sym_EQ_EQ] = ACTIONS(3912), - [anon_sym_BANG_EQ] = ACTIONS(3912), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_LT_EQ] = ACTIONS(3918), - [anon_sym_GT_EQ] = ACTIONS(3918), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3891), - [anon_sym_DASH] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3891), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3858), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_EQ] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3870), + [anon_sym_STAR_EQ] = ACTIONS(3873), + [anon_sym_SLASH_EQ] = ACTIONS(3873), + [anon_sym_PERCENT_EQ] = ACTIONS(3873), + [anon_sym_PLUS_EQ] = ACTIONS(3873), + [anon_sym_DASH_EQ] = ACTIONS(3873), + [anon_sym_LT_LT_EQ] = ACTIONS(3873), + [anon_sym_GT_GT_EQ] = ACTIONS(3873), + [anon_sym_AMP_EQ] = ACTIONS(3873), + [anon_sym_CARET_EQ] = ACTIONS(3873), + [anon_sym_PIPE_EQ] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_CARET] = ACTIONS(3876), + [anon_sym_EQ_EQ] = ACTIONS(3882), + [anon_sym_BANG_EQ] = ACTIONS(3882), + [anon_sym_LT] = ACTIONS(3885), + [anon_sym_GT] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3888), + [anon_sym_GT_EQ] = ACTIONS(3888), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3891), + [anon_sym_PLUS] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_SLASH] = ACTIONS(3861), + [anon_sym_PERCENT] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3894), + [anon_sym_PLUS_PLUS] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3897), + [anon_sym_DASH_GT] = ACTIONS(3897), [sym_comment] = ACTIONS(119), }, [871] = { - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3936), - [anon_sym_EQ] = ACTIONS(3939), - [anon_sym_QMARK] = ACTIONS(3942), - [anon_sym_STAR_EQ] = ACTIONS(3945), - [anon_sym_SLASH_EQ] = ACTIONS(3945), - [anon_sym_PERCENT_EQ] = ACTIONS(3945), - [anon_sym_PLUS_EQ] = ACTIONS(3945), - [anon_sym_DASH_EQ] = ACTIONS(3945), - [anon_sym_LT_LT_EQ] = ACTIONS(3945), - [anon_sym_GT_GT_EQ] = ACTIONS(3945), - [anon_sym_AMP_EQ] = ACTIONS(3945), - [anon_sym_CARET_EQ] = ACTIONS(3945), - [anon_sym_PIPE_EQ] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_CARET] = ACTIONS(3948), - [anon_sym_EQ_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3954), - [anon_sym_LT] = ACTIONS(3957), - [anon_sym_GT] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3960), - [anon_sym_GT_EQ] = ACTIONS(3960), - [anon_sym_LT_LT] = ACTIONS(3963), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_PLUS] = ACTIONS(3933), - [anon_sym_DASH] = ACTIONS(3933), - [anon_sym_SLASH] = ACTIONS(3933), - [anon_sym_PERCENT] = ACTIONS(3933), - [anon_sym_DASH_DASH] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(3903), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3912), + [anon_sym_STAR_EQ] = ACTIONS(3915), + [anon_sym_SLASH_EQ] = ACTIONS(3915), + [anon_sym_PERCENT_EQ] = ACTIONS(3915), + [anon_sym_PLUS_EQ] = ACTIONS(3915), + [anon_sym_DASH_EQ] = ACTIONS(3915), + [anon_sym_LT_LT_EQ] = ACTIONS(3915), + [anon_sym_GT_GT_EQ] = ACTIONS(3915), + [anon_sym_AMP_EQ] = ACTIONS(3915), + [anon_sym_CARET_EQ] = ACTIONS(3915), + [anon_sym_PIPE_EQ] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3918), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE] = ACTIONS(3918), + [anon_sym_CARET] = ACTIONS(3918), + [anon_sym_EQ_EQ] = ACTIONS(3924), + [anon_sym_BANG_EQ] = ACTIONS(3924), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_GT] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_LT_LT] = ACTIONS(3933), + [anon_sym_GT_GT] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_SLASH] = ACTIONS(3903), + [anon_sym_PERCENT] = ACTIONS(3903), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(3939), + [anon_sym_DASH_GT] = ACTIONS(3939), [sym_comment] = ACTIONS(119), }, [872] = { - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_STAR_EQ] = ACTIONS(3981), - [anon_sym_SLASH_EQ] = ACTIONS(3981), - [anon_sym_PERCENT_EQ] = ACTIONS(3981), - [anon_sym_PLUS_EQ] = ACTIONS(3981), - [anon_sym_DASH_EQ] = ACTIONS(3981), - [anon_sym_LT_LT_EQ] = ACTIONS(3981), - [anon_sym_GT_GT_EQ] = ACTIONS(3981), - [anon_sym_AMP_EQ] = ACTIONS(3981), - [anon_sym_CARET_EQ] = ACTIONS(3981), - [anon_sym_PIPE_EQ] = ACTIONS(3981), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_PIPE_PIPE] = ACTIONS(3987), - [anon_sym_AMP_AMP] = ACTIONS(3987), - [anon_sym_PIPE] = ACTIONS(3984), - [anon_sym_CARET] = ACTIONS(3984), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3993), - [anon_sym_GT] = ACTIONS(3993), - [anon_sym_LT_EQ] = ACTIONS(3996), - [anon_sym_GT_EQ] = ACTIONS(3996), - [anon_sym_LT_LT] = ACTIONS(3999), - [anon_sym_GT_GT] = ACTIONS(3999), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3450), - [anon_sym_DASH_GT] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3948), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3954), + [anon_sym_STAR_EQ] = ACTIONS(3957), + [anon_sym_SLASH_EQ] = ACTIONS(3957), + [anon_sym_PERCENT_EQ] = ACTIONS(3957), + [anon_sym_PLUS_EQ] = ACTIONS(3957), + [anon_sym_DASH_EQ] = ACTIONS(3957), + [anon_sym_LT_LT_EQ] = ACTIONS(3957), + [anon_sym_GT_GT_EQ] = ACTIONS(3957), + [anon_sym_AMP_EQ] = ACTIONS(3957), + [anon_sym_CARET_EQ] = ACTIONS(3957), + [anon_sym_PIPE_EQ] = ACTIONS(3957), + [anon_sym_AMP] = ACTIONS(3960), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3960), + [anon_sym_CARET] = ACTIONS(3960), + [anon_sym_EQ_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3969), + [anon_sym_GT] = ACTIONS(3969), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_LT_LT] = ACTIONS(3975), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_SLASH] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_DASH_GT] = ACTIONS(3981), [sym_comment] = ACTIONS(119), }, [873] = { - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(4005), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(4014), - [anon_sym_STAR_EQ] = ACTIONS(4017), - [anon_sym_SLASH_EQ] = ACTIONS(4017), - [anon_sym_PERCENT_EQ] = ACTIONS(4017), - [anon_sym_PLUS_EQ] = ACTIONS(4017), - [anon_sym_DASH_EQ] = ACTIONS(4017), - [anon_sym_LT_LT_EQ] = ACTIONS(4017), - [anon_sym_GT_GT_EQ] = ACTIONS(4017), - [anon_sym_AMP_EQ] = ACTIONS(4017), - [anon_sym_CARET_EQ] = ACTIONS(4017), - [anon_sym_PIPE_EQ] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4023), - [anon_sym_AMP_AMP] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4020), - [anon_sym_CARET] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_LT_EQ] = ACTIONS(4032), - [anon_sym_GT_EQ] = ACTIONS(4032), - [anon_sym_LT_LT] = ACTIONS(4035), - [anon_sym_GT_GT] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4005), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4041), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_QMARK] = ACTIONS(3990), + [anon_sym_STAR_EQ] = ACTIONS(3993), + [anon_sym_SLASH_EQ] = ACTIONS(3993), + [anon_sym_PERCENT_EQ] = ACTIONS(3993), + [anon_sym_PLUS_EQ] = ACTIONS(3993), + [anon_sym_DASH_EQ] = ACTIONS(3993), + [anon_sym_LT_LT_EQ] = ACTIONS(3993), + [anon_sym_GT_GT_EQ] = ACTIONS(3993), + [anon_sym_AMP_EQ] = ACTIONS(3993), + [anon_sym_CARET_EQ] = ACTIONS(3993), + [anon_sym_PIPE_EQ] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_PIPE_PIPE] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_CARET] = ACTIONS(3996), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4005), + [anon_sym_GT] = ACTIONS(4005), + [anon_sym_LT_EQ] = ACTIONS(4008), + [anon_sym_GT_EQ] = ACTIONS(4008), + [anon_sym_LT_LT] = ACTIONS(4011), + [anon_sym_GT_GT] = ACTIONS(4011), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_SLASH] = ACTIONS(3984), + [anon_sym_PERCENT] = ACTIONS(3984), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3462), + [anon_sym_DASH_GT] = ACTIONS(3462), [sym_comment] = ACTIONS(119), }, [874] = { - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_EQ] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4050), - [anon_sym_STAR_EQ] = ACTIONS(4053), - [anon_sym_SLASH_EQ] = ACTIONS(4053), - [anon_sym_PERCENT_EQ] = ACTIONS(4053), - [anon_sym_PLUS_EQ] = ACTIONS(4053), - [anon_sym_DASH_EQ] = ACTIONS(4053), - [anon_sym_LT_LT_EQ] = ACTIONS(4053), - [anon_sym_GT_GT_EQ] = ACTIONS(4053), - [anon_sym_AMP_EQ] = ACTIONS(4053), - [anon_sym_CARET_EQ] = ACTIONS(4053), - [anon_sym_PIPE_EQ] = ACTIONS(4053), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_PIPE_PIPE] = ACTIONS(4059), - [anon_sym_AMP_AMP] = ACTIONS(4059), - [anon_sym_PIPE] = ACTIONS(4056), - [anon_sym_CARET] = ACTIONS(4056), - [anon_sym_EQ_EQ] = ACTIONS(4062), - [anon_sym_BANG_EQ] = ACTIONS(4062), - [anon_sym_LT] = ACTIONS(4065), - [anon_sym_GT] = ACTIONS(4065), - [anon_sym_LT_EQ] = ACTIONS(4068), - [anon_sym_GT_EQ] = ACTIONS(4068), - [anon_sym_LT_LT] = ACTIONS(4071), - [anon_sym_GT_GT] = ACTIONS(4071), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_SLASH] = ACTIONS(4044), - [anon_sym_PERCENT] = ACTIONS(4044), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_DASH_GT] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(481), + [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), [sym_comment] = ACTIONS(119), }, [875] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(4074), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_LBRACK] = ACTIONS(3471), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_STAR_EQ] = ACTIONS(4065), + [anon_sym_SLASH_EQ] = ACTIONS(4065), + [anon_sym_PERCENT_EQ] = ACTIONS(4065), + [anon_sym_PLUS_EQ] = ACTIONS(4065), + [anon_sym_DASH_EQ] = ACTIONS(4065), + [anon_sym_LT_LT_EQ] = ACTIONS(4065), + [anon_sym_GT_GT_EQ] = ACTIONS(4065), + [anon_sym_AMP_EQ] = ACTIONS(4065), + [anon_sym_CARET_EQ] = ACTIONS(4065), + [anon_sym_PIPE_EQ] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4071), + [anon_sym_AMP_AMP] = ACTIONS(4071), + [anon_sym_PIPE] = ACTIONS(4068), + [anon_sym_CARET] = ACTIONS(4068), + [anon_sym_EQ_EQ] = ACTIONS(4074), + [anon_sym_BANG_EQ] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_LT_EQ] = ACTIONS(4080), + [anon_sym_GT_EQ] = ACTIONS(4080), + [anon_sym_LT_LT] = ACTIONS(4083), + [anon_sym_GT_GT] = ACTIONS(4083), + [anon_sym_PLUS] = ACTIONS(4056), + [anon_sym_DASH] = ACTIONS(4056), + [anon_sym_SLASH] = ACTIONS(4056), + [anon_sym_PERCENT] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(3501), + [anon_sym_PLUS_PLUS] = ACTIONS(3501), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_DASH_GT] = ACTIONS(3504), [sym_comment] = ACTIONS(119), }, [876] = { - [sym__expression] = STATE(877), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(4086), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [877] = { + [sym__expression] = STATE(878), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -41018,112 +41102,112 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [877] = { - [anon_sym_LPAREN] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(4079), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_STAR_EQ] = ACTIONS(4085), - [anon_sym_SLASH_EQ] = ACTIONS(4085), - [anon_sym_PERCENT_EQ] = ACTIONS(4085), - [anon_sym_PLUS_EQ] = ACTIONS(4085), - [anon_sym_DASH_EQ] = ACTIONS(4085), - [anon_sym_LT_LT_EQ] = ACTIONS(4085), - [anon_sym_GT_GT_EQ] = ACTIONS(4085), - [anon_sym_AMP_EQ] = ACTIONS(4085), - [anon_sym_CARET_EQ] = ACTIONS(4085), - [anon_sym_PIPE_EQ] = ACTIONS(4085), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym_PIPE_PIPE] = ACTIONS(4091), - [anon_sym_AMP_AMP] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4088), - [anon_sym_CARET] = ACTIONS(4088), - [anon_sym_EQ_EQ] = ACTIONS(4094), - [anon_sym_BANG_EQ] = ACTIONS(4094), - [anon_sym_LT] = ACTIONS(4097), - [anon_sym_GT] = ACTIONS(4097), - [anon_sym_LT_EQ] = ACTIONS(4100), - [anon_sym_GT_EQ] = ACTIONS(4100), - [anon_sym_LT_LT] = ACTIONS(4103), - [anon_sym_GT_GT] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_PERCENT] = ACTIONS(4076), - [anon_sym_DASH_DASH] = ACTIONS(3773), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3776), - [anon_sym_DASH_GT] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [878] = { - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_static] = ACTIONS(4109), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_typedef] = ACTIONS(4109), - [anon_sym_extern] = ACTIONS(4109), - [anon_sym_auto] = ACTIONS(4109), - [anon_sym_register] = ACTIONS(4109), - [anon_sym_const] = ACTIONS(4109), - [anon_sym_restrict] = ACTIONS(4109), - [anon_sym_volatile] = ACTIONS(4109), - [sym_function_specifier] = ACTIONS(4109), - [anon_sym_unsigned] = ACTIONS(4109), - [anon_sym_long] = ACTIONS(4109), - [anon_sym_short] = ACTIONS(4109), - [anon_sym_enum] = ACTIONS(4109), - [anon_sym_struct] = ACTIONS(4109), - [anon_sym_union] = ACTIONS(4109), - [anon_sym_if] = ACTIONS(4109), - [anon_sym_else] = ACTIONS(4109), - [anon_sym_switch] = ACTIONS(4109), - [anon_sym_case] = ACTIONS(4109), - [anon_sym_default] = ACTIONS(4109), - [anon_sym_while] = ACTIONS(4109), - [anon_sym_do] = ACTIONS(4109), - [anon_sym_for] = ACTIONS(4109), - [anon_sym_return] = ACTIONS(4109), - [anon_sym_break] = ACTIONS(4109), - [anon_sym_continue] = ACTIONS(4109), - [anon_sym_goto] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4109), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4109), - [sym_number_literal] = ACTIONS(4109), - [sym_char_literal] = ACTIONS(4109), - [sym_string_literal] = ACTIONS(4109), - [sym_identifier] = ACTIONS(4112), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_QMARK] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4097), + [anon_sym_SLASH_EQ] = ACTIONS(4097), + [anon_sym_PERCENT_EQ] = ACTIONS(4097), + [anon_sym_PLUS_EQ] = ACTIONS(4097), + [anon_sym_DASH_EQ] = ACTIONS(4097), + [anon_sym_LT_LT_EQ] = ACTIONS(4097), + [anon_sym_GT_GT_EQ] = ACTIONS(4097), + [anon_sym_AMP_EQ] = ACTIONS(4097), + [anon_sym_CARET_EQ] = ACTIONS(4097), + [anon_sym_PIPE_EQ] = ACTIONS(4097), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4103), + [anon_sym_AMP_AMP] = ACTIONS(4103), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_CARET] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_LT] = ACTIONS(4109), + [anon_sym_GT] = ACTIONS(4109), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_LT_LT] = ACTIONS(4115), + [anon_sym_GT_GT] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_SLASH] = ACTIONS(4088), + [anon_sym_PERCENT] = ACTIONS(4088), + [anon_sym_DASH_DASH] = ACTIONS(3785), + [anon_sym_PLUS_PLUS] = ACTIONS(3785), + [anon_sym_DOT] = ACTIONS(3788), + [anon_sym_DASH_GT] = ACTIONS(3788), [sym_comment] = ACTIONS(119), }, [879] = { + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_static] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4118), + [anon_sym_RBRACE] = ACTIONS(4118), + [anon_sym_typedef] = ACTIONS(4121), + [anon_sym_extern] = ACTIONS(4121), + [anon_sym_auto] = ACTIONS(4121), + [anon_sym_register] = ACTIONS(4121), + [anon_sym_const] = ACTIONS(4121), + [anon_sym_restrict] = ACTIONS(4121), + [anon_sym_volatile] = ACTIONS(4121), + [sym_function_specifier] = ACTIONS(4121), + [anon_sym_unsigned] = ACTIONS(4121), + [anon_sym_long] = ACTIONS(4121), + [anon_sym_short] = ACTIONS(4121), + [anon_sym_enum] = ACTIONS(4121), + [anon_sym_struct] = ACTIONS(4121), + [anon_sym_union] = ACTIONS(4121), + [anon_sym_if] = ACTIONS(4121), + [anon_sym_else] = ACTIONS(4121), + [anon_sym_switch] = ACTIONS(4121), + [anon_sym_case] = ACTIONS(4121), + [anon_sym_default] = ACTIONS(4121), + [anon_sym_while] = ACTIONS(4121), + [anon_sym_do] = ACTIONS(4121), + [anon_sym_for] = ACTIONS(4121), + [anon_sym_return] = ACTIONS(4121), + [anon_sym_break] = ACTIONS(4121), + [anon_sym_continue] = ACTIONS(4121), + [anon_sym_goto] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_TILDE] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4121), + [anon_sym_DASH_DASH] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_sizeof] = ACTIONS(4121), + [sym_number_literal] = ACTIONS(4121), + [sym_char_literal] = ACTIONS(4121), + [sym_string_literal] = ACTIONS(4121), + [sym_identifier] = ACTIONS(4124), + [sym_comment] = ACTIONS(119), + }, + [880] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -41146,12 +41230,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(881), + [sym_type_name] = STATE(882), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -41161,68 +41245,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [880] = { - [anon_sym_LPAREN] = ACTIONS(4115), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(4124), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_STAR_EQ] = ACTIONS(4130), - [anon_sym_SLASH_EQ] = ACTIONS(4130), - [anon_sym_PERCENT_EQ] = ACTIONS(4130), - [anon_sym_PLUS_EQ] = ACTIONS(4130), - [anon_sym_DASH_EQ] = ACTIONS(4130), - [anon_sym_LT_LT_EQ] = ACTIONS(4130), - [anon_sym_GT_GT_EQ] = ACTIONS(4130), - [anon_sym_AMP_EQ] = ACTIONS(4130), - [anon_sym_CARET_EQ] = ACTIONS(4130), - [anon_sym_PIPE_EQ] = ACTIONS(4130), - [anon_sym_AMP] = ACTIONS(4133), - [anon_sym_PIPE_PIPE] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4133), - [anon_sym_CARET] = ACTIONS(4133), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_LT] = ACTIONS(4142), - [anon_sym_GT] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4145), - [anon_sym_GT_EQ] = ACTIONS(4145), - [anon_sym_LT_LT] = ACTIONS(4148), - [anon_sym_GT_GT] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4154), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [881] = { - [anon_sym_RPAREN] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4133), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4139), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_LT_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_GT_EQ] = ACTIONS(4142), + [anon_sym_AMP_EQ] = ACTIONS(4142), + [anon_sym_CARET_EQ] = ACTIONS(4142), + [anon_sym_PIPE_EQ] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4151), + [anon_sym_BANG_EQ] = ACTIONS(4151), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4157), + [anon_sym_GT_EQ] = ACTIONS(4157), + [anon_sym_LT_LT] = ACTIONS(4160), + [anon_sym_GT_GT] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_DASH_DASH] = ACTIONS(4163), + [anon_sym_PLUS_PLUS] = ACTIONS(4163), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), [sym_comment] = ACTIONS(119), }, [882] = { - [sym__expression] = STATE(883), + [anon_sym_RPAREN] = ACTIONS(4169), + [sym_comment] = ACTIONS(119), + }, + [883] = { + [sym__expression] = STATE(884), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -41238,319 +41322,319 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(4159), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(4162), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(4165), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4167), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4170), - [anon_sym_sizeof] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [883] = { - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(4173), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(4176), - [anon_sym_QMARK] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4182), - [anon_sym_SLASH_EQ] = ACTIONS(4182), - [anon_sym_PERCENT_EQ] = ACTIONS(4182), - [anon_sym_PLUS_EQ] = ACTIONS(4182), - [anon_sym_DASH_EQ] = ACTIONS(4182), - [anon_sym_LT_LT_EQ] = ACTIONS(4182), - [anon_sym_GT_GT_EQ] = ACTIONS(4182), - [anon_sym_AMP_EQ] = ACTIONS(4182), - [anon_sym_CARET_EQ] = ACTIONS(4182), - [anon_sym_PIPE_EQ] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4185), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4185), - [anon_sym_CARET] = ACTIONS(4185), - [anon_sym_EQ_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4191), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_EQ] = ACTIONS(4197), - [anon_sym_LT_LT] = ACTIONS(4200), - [anon_sym_GT_GT] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4173), - [anon_sym_DASH] = ACTIONS(4173), - [anon_sym_SLASH] = ACTIONS(4173), - [anon_sym_PERCENT] = ACTIONS(4173), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3366), - [anon_sym_DASH_GT] = ACTIONS(3366), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(935), + [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(4174), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(4177), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [884] = { - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(4203), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_QMARK] = ACTIONS(4209), - [anon_sym_STAR_EQ] = ACTIONS(4212), - [anon_sym_SLASH_EQ] = ACTIONS(4212), - [anon_sym_PERCENT_EQ] = ACTIONS(4212), - [anon_sym_PLUS_EQ] = ACTIONS(4212), - [anon_sym_DASH_EQ] = ACTIONS(4212), - [anon_sym_LT_LT_EQ] = ACTIONS(4212), - [anon_sym_GT_GT_EQ] = ACTIONS(4212), - [anon_sym_AMP_EQ] = ACTIONS(4212), - [anon_sym_CARET_EQ] = ACTIONS(4212), - [anon_sym_PIPE_EQ] = ACTIONS(4212), - [anon_sym_AMP] = ACTIONS(4215), - [anon_sym_PIPE_PIPE] = ACTIONS(4218), - [anon_sym_AMP_AMP] = ACTIONS(4218), - [anon_sym_PIPE] = ACTIONS(4215), - [anon_sym_CARET] = ACTIONS(4215), - [anon_sym_EQ_EQ] = ACTIONS(4221), - [anon_sym_BANG_EQ] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_LT_EQ] = ACTIONS(4227), - [anon_sym_GT_EQ] = ACTIONS(4227), - [anon_sym_LT_LT] = ACTIONS(4230), - [anon_sym_GT_GT] = ACTIONS(4230), - [anon_sym_PLUS] = ACTIONS(4203), - [anon_sym_DASH] = ACTIONS(4203), - [anon_sym_SLASH] = ACTIONS(4203), - [anon_sym_PERCENT] = ACTIONS(4203), - [anon_sym_DASH_DASH] = ACTIONS(3531), - [anon_sym_PLUS_PLUS] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_DASH_GT] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_EQ] = ACTIONS(4188), + [anon_sym_QMARK] = ACTIONS(4191), + [anon_sym_STAR_EQ] = ACTIONS(4194), + [anon_sym_SLASH_EQ] = ACTIONS(4194), + [anon_sym_PERCENT_EQ] = ACTIONS(4194), + [anon_sym_PLUS_EQ] = ACTIONS(4194), + [anon_sym_DASH_EQ] = ACTIONS(4194), + [anon_sym_LT_LT_EQ] = ACTIONS(4194), + [anon_sym_GT_GT_EQ] = ACTIONS(4194), + [anon_sym_AMP_EQ] = ACTIONS(4194), + [anon_sym_CARET_EQ] = ACTIONS(4194), + [anon_sym_PIPE_EQ] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4197), + [anon_sym_PIPE_PIPE] = ACTIONS(4200), + [anon_sym_AMP_AMP] = ACTIONS(4200), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_CARET] = ACTIONS(4197), + [anon_sym_EQ_EQ] = ACTIONS(4203), + [anon_sym_BANG_EQ] = ACTIONS(4203), + [anon_sym_LT] = ACTIONS(4206), + [anon_sym_GT] = ACTIONS(4206), + [anon_sym_LT_EQ] = ACTIONS(4209), + [anon_sym_GT_EQ] = ACTIONS(4209), + [anon_sym_LT_LT] = ACTIONS(4212), + [anon_sym_GT_GT] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_SLASH] = ACTIONS(4185), + [anon_sym_PERCENT] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_DASH_GT] = ACTIONS(3378), [sym_comment] = ACTIONS(119), }, [885] = { - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_COMMA] = ACTIONS(1022), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_QMARK] = ACTIONS(4245), - [anon_sym_STAR_EQ] = ACTIONS(4248), - [anon_sym_SLASH_EQ] = ACTIONS(4248), - [anon_sym_PERCENT_EQ] = ACTIONS(4248), - [anon_sym_PLUS_EQ] = ACTIONS(4248), - [anon_sym_DASH_EQ] = ACTIONS(4248), - [anon_sym_LT_LT_EQ] = ACTIONS(4248), - [anon_sym_GT_GT_EQ] = ACTIONS(4248), - [anon_sym_AMP_EQ] = ACTIONS(4248), - [anon_sym_CARET_EQ] = ACTIONS(4248), - [anon_sym_PIPE_EQ] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_PIPE_PIPE] = ACTIONS(4254), - [anon_sym_AMP_AMP] = ACTIONS(4254), - [anon_sym_PIPE] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_EQ_EQ] = ACTIONS(4257), - [anon_sym_BANG_EQ] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_LT_EQ] = ACTIONS(4263), - [anon_sym_GT_EQ] = ACTIONS(4263), - [anon_sym_LT_LT] = ACTIONS(4266), - [anon_sym_GT_GT] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_SLASH] = ACTIONS(4236), - [anon_sym_PERCENT] = ACTIONS(4236), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_PLUS_PLUS] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4272), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4221), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_LT_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_GT_EQ] = ACTIONS(4224), + [anon_sym_AMP_EQ] = ACTIONS(4224), + [anon_sym_CARET_EQ] = ACTIONS(4224), + [anon_sym_PIPE_EQ] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_EQ_EQ] = ACTIONS(4233), + [anon_sym_BANG_EQ] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4236), + [anon_sym_GT] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_LT_LT] = ACTIONS(4242), + [anon_sym_GT_GT] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_DOT] = ACTIONS(3546), + [anon_sym_DASH_GT] = ACTIONS(3546), [sym_comment] = ACTIONS(119), }, [886] = { - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4287), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4293), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4305), - [anon_sym_LT_LT] = ACTIONS(4308), - [anon_sym_GT_GT] = ACTIONS(4308), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_SLASH] = ACTIONS(4278), - [anon_sym_PERCENT] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4260), + [anon_sym_SLASH_EQ] = ACTIONS(4260), + [anon_sym_PERCENT_EQ] = ACTIONS(4260), + [anon_sym_PLUS_EQ] = ACTIONS(4260), + [anon_sym_DASH_EQ] = ACTIONS(4260), + [anon_sym_LT_LT_EQ] = ACTIONS(4260), + [anon_sym_GT_GT_EQ] = ACTIONS(4260), + [anon_sym_AMP_EQ] = ACTIONS(4260), + [anon_sym_CARET_EQ] = ACTIONS(4260), + [anon_sym_PIPE_EQ] = ACTIONS(4260), + [anon_sym_AMP] = ACTIONS(4263), + [anon_sym_PIPE_PIPE] = ACTIONS(4266), + [anon_sym_AMP_AMP] = ACTIONS(4266), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_CARET] = ACTIONS(4263), + [anon_sym_EQ_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4269), + [anon_sym_LT] = ACTIONS(4272), + [anon_sym_GT] = ACTIONS(4272), + [anon_sym_LT_EQ] = ACTIONS(4275), + [anon_sym_GT_EQ] = ACTIONS(4275), + [anon_sym_LT_LT] = ACTIONS(4278), + [anon_sym_GT_GT] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4284), [sym_comment] = ACTIONS(119), }, [887] = { - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4326), - [anon_sym_SLASH_EQ] = ACTIONS(4326), - [anon_sym_PERCENT_EQ] = ACTIONS(4326), - [anon_sym_PLUS_EQ] = ACTIONS(4326), - [anon_sym_DASH_EQ] = ACTIONS(4326), - [anon_sym_LT_LT_EQ] = ACTIONS(4326), - [anon_sym_GT_GT_EQ] = ACTIONS(4326), - [anon_sym_AMP_EQ] = ACTIONS(4326), - [anon_sym_CARET_EQ] = ACTIONS(4326), - [anon_sym_PIPE_EQ] = ACTIONS(4326), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4332), - [anon_sym_AMP_AMP] = ACTIONS(4332), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_CARET] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4335), - [anon_sym_BANG_EQ] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4338), - [anon_sym_GT] = ACTIONS(4338), - [anon_sym_LT_EQ] = ACTIONS(4341), - [anon_sym_GT_EQ] = ACTIONS(4341), - [anon_sym_LT_LT] = ACTIONS(4344), - [anon_sym_GT_GT] = ACTIONS(4344), - [anon_sym_PLUS] = ACTIONS(4317), - [anon_sym_DASH] = ACTIONS(4317), - [anon_sym_SLASH] = ACTIONS(4317), - [anon_sym_PERCENT] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_DASH_GT] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(4287), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_EQ] = ACTIONS(4296), + [anon_sym_QMARK] = ACTIONS(4299), + [anon_sym_STAR_EQ] = ACTIONS(4302), + [anon_sym_SLASH_EQ] = ACTIONS(4302), + [anon_sym_PERCENT_EQ] = ACTIONS(4302), + [anon_sym_PLUS_EQ] = ACTIONS(4302), + [anon_sym_DASH_EQ] = ACTIONS(4302), + [anon_sym_LT_LT_EQ] = ACTIONS(4302), + [anon_sym_GT_GT_EQ] = ACTIONS(4302), + [anon_sym_AMP_EQ] = ACTIONS(4302), + [anon_sym_CARET_EQ] = ACTIONS(4302), + [anon_sym_PIPE_EQ] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4308), + [anon_sym_AMP_AMP] = ACTIONS(4308), + [anon_sym_PIPE] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_LT_EQ] = ACTIONS(4317), + [anon_sym_GT_EQ] = ACTIONS(4317), + [anon_sym_LT_LT] = ACTIONS(4320), + [anon_sym_GT_GT] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_SLASH] = ACTIONS(4290), + [anon_sym_PERCENT] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4326), [sym_comment] = ACTIONS(119), }, [888] = { - [anon_sym_LPAREN] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_static] = ACTIONS(4350), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_RBRACE] = ACTIONS(4347), - [anon_sym_typedef] = ACTIONS(4350), - [anon_sym_extern] = ACTIONS(4350), - [anon_sym_auto] = ACTIONS(4350), - [anon_sym_register] = ACTIONS(4350), - [anon_sym_const] = ACTIONS(4350), - [anon_sym_restrict] = ACTIONS(4350), - [anon_sym_volatile] = ACTIONS(4350), - [sym_function_specifier] = ACTIONS(4350), - [anon_sym_unsigned] = ACTIONS(4350), - [anon_sym_long] = ACTIONS(4350), - [anon_sym_short] = ACTIONS(4350), - [anon_sym_enum] = ACTIONS(4350), - [anon_sym_struct] = ACTIONS(4350), - [anon_sym_union] = ACTIONS(4350), - [anon_sym_if] = ACTIONS(4350), - [anon_sym_else] = ACTIONS(4350), - [anon_sym_switch] = ACTIONS(4350), - [anon_sym_case] = ACTIONS(4350), - [anon_sym_default] = ACTIONS(4350), - [anon_sym_while] = ACTIONS(4350), - [anon_sym_do] = ACTIONS(4350), - [anon_sym_for] = ACTIONS(4350), - [anon_sym_return] = ACTIONS(4350), - [anon_sym_break] = ACTIONS(4350), - [anon_sym_continue] = ACTIONS(4350), - [anon_sym_goto] = ACTIONS(4350), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_TILDE] = ACTIONS(4347), - [anon_sym_PLUS] = ACTIONS(4350), - [anon_sym_DASH] = ACTIONS(4350), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_sizeof] = ACTIONS(4350), - [sym_number_literal] = ACTIONS(4350), - [sym_char_literal] = ACTIONS(4350), - [sym_string_literal] = ACTIONS(4350), - [sym_identifier] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(3555), + [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(3585), + [anon_sym_PLUS_PLUS] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3588), [sym_comment] = ACTIONS(119), }, [889] = { - [anon_sym_RPAREN] = ACTIONS(4356), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_static] = ACTIONS(4362), + [anon_sym_LBRACE] = ACTIONS(4359), + [anon_sym_RBRACE] = ACTIONS(4359), + [anon_sym_typedef] = ACTIONS(4362), + [anon_sym_extern] = ACTIONS(4362), + [anon_sym_auto] = ACTIONS(4362), + [anon_sym_register] = ACTIONS(4362), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(4362), + [anon_sym_volatile] = ACTIONS(4362), + [sym_function_specifier] = ACTIONS(4362), + [anon_sym_unsigned] = ACTIONS(4362), + [anon_sym_long] = ACTIONS(4362), + [anon_sym_short] = ACTIONS(4362), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(4362), + [anon_sym_union] = ACTIONS(4362), + [anon_sym_if] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_switch] = ACTIONS(4362), + [anon_sym_case] = ACTIONS(4362), + [anon_sym_default] = ACTIONS(4362), + [anon_sym_while] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_for] = ACTIONS(4362), + [anon_sym_return] = ACTIONS(4362), + [anon_sym_break] = ACTIONS(4362), + [anon_sym_continue] = ACTIONS(4362), + [anon_sym_goto] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4362), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_DASH_DASH] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(4359), + [anon_sym_sizeof] = ACTIONS(4362), + [sym_number_literal] = ACTIONS(4362), + [sym_char_literal] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4362), + [sym_identifier] = ACTIONS(4365), [sym_comment] = ACTIONS(119), }, [890] = { - [sym__expression] = STATE(883), + [anon_sym_RPAREN] = ACTIONS(4368), + [sym_comment] = ACTIONS(119), + }, + [891] = { + [sym__expression] = STATE(884), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -41566,181 +41650,181 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(3779), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [891] = { - [anon_sym_LPAREN] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_STAR] = ACTIONS(4358), - [anon_sym_static] = ACTIONS(4365), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_RBRACE] = ACTIONS(4358), - [anon_sym_typedef] = ACTIONS(4365), - [anon_sym_extern] = ACTIONS(4365), - [anon_sym_auto] = ACTIONS(4365), - [anon_sym_register] = ACTIONS(4365), - [anon_sym_const] = ACTIONS(4365), - [anon_sym_restrict] = ACTIONS(4365), - [anon_sym_volatile] = ACTIONS(4365), - [sym_function_specifier] = ACTIONS(4365), - [anon_sym_unsigned] = ACTIONS(4365), - [anon_sym_long] = ACTIONS(4365), - [anon_sym_short] = ACTIONS(4365), - [anon_sym_enum] = ACTIONS(4365), - [anon_sym_struct] = ACTIONS(4365), - [anon_sym_union] = ACTIONS(4365), - [anon_sym_if] = ACTIONS(4365), - [anon_sym_else] = ACTIONS(4372), - [anon_sym_switch] = ACTIONS(4365), - [anon_sym_case] = ACTIONS(4365), - [anon_sym_default] = ACTIONS(4365), - [anon_sym_while] = ACTIONS(4365), - [anon_sym_do] = ACTIONS(4365), - [anon_sym_for] = ACTIONS(4365), - [anon_sym_return] = ACTIONS(4365), - [anon_sym_break] = ACTIONS(4365), - [anon_sym_continue] = ACTIONS(4365), - [anon_sym_goto] = ACTIONS(4365), - [anon_sym_AMP] = ACTIONS(4358), - [anon_sym_BANG] = ACTIONS(4358), - [anon_sym_TILDE] = ACTIONS(4358), - [anon_sym_PLUS] = ACTIONS(4365), - [anon_sym_DASH] = ACTIONS(4365), - [anon_sym_DASH_DASH] = ACTIONS(4358), - [anon_sym_PLUS_PLUS] = ACTIONS(4358), - [anon_sym_sizeof] = ACTIONS(4365), - [sym_number_literal] = ACTIONS(4365), - [sym_char_literal] = ACTIONS(4365), - [sym_string_literal] = ACTIONS(4365), - [sym_identifier] = ACTIONS(4380), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(3791), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [892] = { - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_COLON] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(4370), + [anon_sym_SEMI] = ACTIONS(4370), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_static] = ACTIONS(4377), + [anon_sym_LBRACE] = ACTIONS(4370), + [anon_sym_RBRACE] = ACTIONS(4370), + [anon_sym_typedef] = ACTIONS(4377), + [anon_sym_extern] = ACTIONS(4377), + [anon_sym_auto] = ACTIONS(4377), + [anon_sym_register] = ACTIONS(4377), + [anon_sym_const] = ACTIONS(4377), + [anon_sym_restrict] = ACTIONS(4377), + [anon_sym_volatile] = ACTIONS(4377), + [sym_function_specifier] = ACTIONS(4377), + [anon_sym_unsigned] = ACTIONS(4377), + [anon_sym_long] = ACTIONS(4377), + [anon_sym_short] = ACTIONS(4377), + [anon_sym_enum] = ACTIONS(4377), + [anon_sym_struct] = ACTIONS(4377), + [anon_sym_union] = ACTIONS(4377), + [anon_sym_if] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4384), + [anon_sym_switch] = ACTIONS(4377), + [anon_sym_case] = ACTIONS(4377), + [anon_sym_default] = ACTIONS(4377), + [anon_sym_while] = ACTIONS(4377), + [anon_sym_do] = ACTIONS(4377), + [anon_sym_for] = ACTIONS(4377), + [anon_sym_return] = ACTIONS(4377), + [anon_sym_break] = ACTIONS(4377), + [anon_sym_continue] = ACTIONS(4377), + [anon_sym_goto] = ACTIONS(4377), + [anon_sym_AMP] = ACTIONS(4370), + [anon_sym_BANG] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4370), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [sym_char_literal] = ACTIONS(4377), + [sym_string_literal] = ACTIONS(4377), + [sym_identifier] = ACTIONS(4392), [sym_comment] = ACTIONS(119), }, [893] = { - [sym_enumerator] = STATE(454), - [anon_sym_RBRACE] = ACTIONS(4390), - [sym_identifier] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_EQ] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(777), [sym_comment] = ACTIONS(119), }, [894] = { - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_COMMA] = ACTIONS(4392), - [anon_sym_RPAREN] = ACTIONS(4392), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_STAR] = ACTIONS(4392), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_COLON] = ACTIONS(4392), - [sym_identifier] = ACTIONS(4395), + [sym_enumerator] = STATE(455), + [anon_sym_RBRACE] = ACTIONS(4402), + [sym_identifier] = ACTIONS(1097), [sym_comment] = ACTIONS(119), }, [895] = { - [anon_sym_LPAREN] = ACTIONS(4398), - [anon_sym_COMMA] = ACTIONS(4398), - [anon_sym_RPAREN] = ACTIONS(4398), - [anon_sym_SEMI] = ACTIONS(4398), - [anon_sym_STAR] = ACTIONS(4398), - [anon_sym_LBRACK] = ACTIONS(4398), - [anon_sym_COLON] = ACTIONS(4398), - [sym_identifier] = ACTIONS(4401), - [sym_comment] = ACTIONS(119), - }, - [896] = { - [ts_builtin_sym_end] = ACTIONS(4404), - [anon_sym_POUNDinclude] = ACTIONS(4407), - [anon_sym_POUNDdefine] = ACTIONS(4407), [anon_sym_LPAREN] = ACTIONS(4404), - [anon_sym_POUNDifdef] = ACTIONS(4407), - [anon_sym_POUNDifndef] = ACTIONS(4407), - [sym_preproc_directive] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4404), [anon_sym_SEMI] = ACTIONS(4404), [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_static] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4404), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_typedef] = ACTIONS(4407), - [anon_sym_extern] = ACTIONS(4407), - [anon_sym_auto] = ACTIONS(4407), - [anon_sym_register] = ACTIONS(4407), - [anon_sym_const] = ACTIONS(4418), - [anon_sym_restrict] = ACTIONS(4418), - [anon_sym_volatile] = ACTIONS(4418), - [sym_function_specifier] = ACTIONS(4407), - [anon_sym_unsigned] = ACTIONS(4418), - [anon_sym_long] = ACTIONS(4418), - [anon_sym_short] = ACTIONS(4418), - [anon_sym_enum] = ACTIONS(4418), - [anon_sym_struct] = ACTIONS(4418), - [anon_sym_union] = ACTIONS(4418), - [anon_sym_if] = ACTIONS(4407), - [anon_sym_switch] = ACTIONS(4407), - [anon_sym_case] = ACTIONS(4407), - [anon_sym_default] = ACTIONS(4407), - [anon_sym_while] = ACTIONS(4407), - [anon_sym_do] = ACTIONS(4407), - [anon_sym_for] = ACTIONS(4407), - [anon_sym_return] = ACTIONS(4407), - [anon_sym_break] = ACTIONS(4407), - [anon_sym_continue] = ACTIONS(4407), - [anon_sym_goto] = ACTIONS(4407), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_TILDE] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4407), - [anon_sym_DASH] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(4407), - [sym_number_literal] = ACTIONS(4407), - [sym_char_literal] = ACTIONS(4407), - [sym_string_literal] = ACTIONS(4407), - [sym_identifier] = ACTIONS(4423), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_COLON] = ACTIONS(4404), + [sym_identifier] = ACTIONS(4407), + [sym_comment] = ACTIONS(119), + }, + [896] = { + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4410), + [anon_sym_RPAREN] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_LBRACK] = ACTIONS(4410), + [anon_sym_COLON] = ACTIONS(4410), + [sym_identifier] = ACTIONS(4413), [sym_comment] = ACTIONS(119), }, [897] = { - [sym__declarator] = STATE(911), - [sym__abstract_declarator] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(4416), + [anon_sym_POUNDinclude] = ACTIONS(4419), + [anon_sym_POUNDdefine] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym_POUNDifdef] = ACTIONS(4419), + [anon_sym_POUNDifndef] = ACTIONS(4419), + [sym_preproc_directive] = ACTIONS(4422), + [anon_sym_SEMI] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [anon_sym_static] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4416), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_typedef] = ACTIONS(4419), + [anon_sym_extern] = ACTIONS(4419), + [anon_sym_auto] = ACTIONS(4419), + [anon_sym_register] = ACTIONS(4419), + [anon_sym_const] = ACTIONS(4430), + [anon_sym_restrict] = ACTIONS(4430), + [anon_sym_volatile] = ACTIONS(4430), + [sym_function_specifier] = ACTIONS(4419), + [anon_sym_unsigned] = ACTIONS(4430), + [anon_sym_long] = ACTIONS(4430), + [anon_sym_short] = ACTIONS(4430), + [anon_sym_enum] = ACTIONS(4430), + [anon_sym_struct] = ACTIONS(4430), + [anon_sym_union] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4419), + [anon_sym_default] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_do] = ACTIONS(4419), + [anon_sym_for] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_goto] = ACTIONS(4419), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_TILDE] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4416), + [anon_sym_PLUS_PLUS] = ACTIONS(4416), + [anon_sym_sizeof] = ACTIONS(4419), + [sym_number_literal] = ACTIONS(4419), + [sym_char_literal] = ACTIONS(4419), + [sym_string_literal] = ACTIONS(4419), + [sym_identifier] = ACTIONS(4435), + [sym_comment] = ACTIONS(119), + }, + [898] = { + [sym__declarator] = STATE(912), + [sym__abstract_declarator] = STATE(261), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2230), - [sym_identifier] = ACTIONS(212), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2239), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [898] = { - [sym__expression] = STATE(912), + [899] = { + [sym__expression] = STATE(913), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -41756,170 +41840,170 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [899] = { - [sym_compound_statement] = STATE(906), - [aux_sym_declaration_repeat1] = STATE(804), - [aux_sym_struct_declaration_repeat1] = STATE(807), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(4428), - [anon_sym_RPAREN] = ACTIONS(4432), - [anon_sym_SEMI] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [900] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(4432), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(690), + [sym_compound_statement] = STATE(907), + [aux_sym_declaration_repeat1] = STATE(805), + [aux_sym_struct_declaration_repeat1] = STATE(808), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(4440), + [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_COLON] = ACTIONS(4449), [sym_comment] = ACTIONS(119), }, [901] = { - [aux_sym_declaration_repeat1] = STATE(804), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4451), + [anon_sym_LBRACK] = ACTIONS(699), [sym_comment] = ACTIONS(119), }, [902] = { - [ts_builtin_sym_end] = ACTIONS(4446), - [anon_sym_POUNDinclude] = ACTIONS(4449), - [anon_sym_POUNDdefine] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_POUNDifdef] = ACTIONS(4449), - [anon_sym_POUNDifndef] = ACTIONS(4449), - [anon_sym_POUNDendif] = ACTIONS(4449), - [anon_sym_POUNDelse] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4446), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_static] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_typedef] = ACTIONS(4449), - [anon_sym_extern] = ACTIONS(4449), - [anon_sym_auto] = ACTIONS(4449), - [anon_sym_register] = ACTIONS(4449), - [anon_sym_const] = ACTIONS(4449), - [anon_sym_restrict] = ACTIONS(4449), - [anon_sym_volatile] = ACTIONS(4449), - [sym_function_specifier] = ACTIONS(4449), - [anon_sym_unsigned] = ACTIONS(4449), - [anon_sym_long] = ACTIONS(4449), - [anon_sym_short] = ACTIONS(4449), - [anon_sym_enum] = ACTIONS(4449), - [anon_sym_struct] = ACTIONS(4449), - [anon_sym_union] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(4449), - [anon_sym_switch] = ACTIONS(4449), - [anon_sym_case] = ACTIONS(4449), - [anon_sym_default] = ACTIONS(4449), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_do] = ACTIONS(4449), - [anon_sym_for] = ACTIONS(4449), - [anon_sym_return] = ACTIONS(4449), - [anon_sym_break] = ACTIONS(4449), - [anon_sym_continue] = ACTIONS(4449), - [anon_sym_goto] = ACTIONS(4449), - [anon_sym_AMP] = ACTIONS(4446), - [anon_sym_BANG] = ACTIONS(4446), - [anon_sym_TILDE] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_sizeof] = ACTIONS(4449), - [sym_number_literal] = ACTIONS(4449), - [sym_char_literal] = ACTIONS(4449), - [sym_string_literal] = ACTIONS(4449), - [sym_identifier] = ACTIONS(4452), + [aux_sym_declaration_repeat1] = STATE(805), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(4456), [sym_comment] = ACTIONS(119), }, [903] = { - [sym__declarator] = STATE(910), + [ts_builtin_sym_end] = ACTIONS(4458), + [anon_sym_POUNDinclude] = ACTIONS(4461), + [anon_sym_POUNDdefine] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_POUNDifdef] = ACTIONS(4461), + [anon_sym_POUNDifndef] = ACTIONS(4461), + [anon_sym_POUNDendif] = ACTIONS(4461), + [anon_sym_POUNDelse] = ACTIONS(4461), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_static] = ACTIONS(4461), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_typedef] = ACTIONS(4461), + [anon_sym_extern] = ACTIONS(4461), + [anon_sym_auto] = ACTIONS(4461), + [anon_sym_register] = ACTIONS(4461), + [anon_sym_const] = ACTIONS(4461), + [anon_sym_restrict] = ACTIONS(4461), + [anon_sym_volatile] = ACTIONS(4461), + [sym_function_specifier] = ACTIONS(4461), + [anon_sym_unsigned] = ACTIONS(4461), + [anon_sym_long] = ACTIONS(4461), + [anon_sym_short] = ACTIONS(4461), + [anon_sym_enum] = ACTIONS(4461), + [anon_sym_struct] = ACTIONS(4461), + [anon_sym_union] = ACTIONS(4461), + [anon_sym_if] = ACTIONS(4461), + [anon_sym_switch] = ACTIONS(4461), + [anon_sym_case] = ACTIONS(4461), + [anon_sym_default] = ACTIONS(4461), + [anon_sym_while] = ACTIONS(4461), + [anon_sym_do] = ACTIONS(4461), + [anon_sym_for] = ACTIONS(4461), + [anon_sym_return] = ACTIONS(4461), + [anon_sym_break] = ACTIONS(4461), + [anon_sym_continue] = ACTIONS(4461), + [anon_sym_goto] = ACTIONS(4461), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_sizeof] = ACTIONS(4461), + [sym_number_literal] = ACTIONS(4461), + [sym_char_literal] = ACTIONS(4461), + [sym_string_literal] = ACTIONS(4461), + [sym_identifier] = ACTIONS(4464), + [sym_comment] = ACTIONS(119), + }, + [904] = { + [sym__declarator] = STATE(911), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym_init_declarator] = STATE(489), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(4455), - [sym_identifier] = ACTIONS(212), + [sym_init_declarator] = STATE(490), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(4467), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [904] = { - [ts_builtin_sym_end] = ACTIONS(4446), - [anon_sym_POUNDinclude] = ACTIONS(4449), - [anon_sym_POUNDdefine] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4446), - [anon_sym_POUNDifdef] = ACTIONS(4449), - [anon_sym_POUNDifndef] = ACTIONS(4449), - [anon_sym_POUNDendif] = ACTIONS(4449), - [anon_sym_POUNDelse] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4452), - [anon_sym_SEMI] = ACTIONS(4446), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_static] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4446), - [anon_sym_RBRACE] = ACTIONS(4457), - [anon_sym_typedef] = ACTIONS(4449), - [anon_sym_extern] = ACTIONS(4449), - [anon_sym_auto] = ACTIONS(4449), - [anon_sym_register] = ACTIONS(4449), - [anon_sym_const] = ACTIONS(4462), - [anon_sym_restrict] = ACTIONS(4462), - [anon_sym_volatile] = ACTIONS(4462), - [sym_function_specifier] = ACTIONS(4449), - [anon_sym_unsigned] = ACTIONS(4462), - [anon_sym_long] = ACTIONS(4462), - [anon_sym_short] = ACTIONS(4462), - [anon_sym_enum] = ACTIONS(4462), - [anon_sym_struct] = ACTIONS(4462), - [anon_sym_union] = ACTIONS(4462), - [anon_sym_if] = ACTIONS(4449), - [anon_sym_switch] = ACTIONS(4449), - [anon_sym_case] = ACTIONS(4449), - [anon_sym_default] = ACTIONS(4449), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_do] = ACTIONS(4449), - [anon_sym_for] = ACTIONS(4449), - [anon_sym_return] = ACTIONS(4449), - [anon_sym_break] = ACTIONS(4449), - [anon_sym_continue] = ACTIONS(4449), - [anon_sym_goto] = ACTIONS(4449), - [anon_sym_AMP] = ACTIONS(4446), - [anon_sym_BANG] = ACTIONS(4446), - [anon_sym_TILDE] = ACTIONS(4446), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_DASH_DASH] = ACTIONS(4446), - [anon_sym_PLUS_PLUS] = ACTIONS(4446), - [anon_sym_sizeof] = ACTIONS(4449), - [sym_number_literal] = ACTIONS(4449), - [sym_char_literal] = ACTIONS(4449), - [sym_string_literal] = ACTIONS(4449), - [sym_identifier] = ACTIONS(4467), + [905] = { + [ts_builtin_sym_end] = ACTIONS(4458), + [anon_sym_POUNDinclude] = ACTIONS(4461), + [anon_sym_POUNDdefine] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_POUNDifdef] = ACTIONS(4461), + [anon_sym_POUNDifndef] = ACTIONS(4461), + [anon_sym_POUNDendif] = ACTIONS(4461), + [anon_sym_POUNDelse] = ACTIONS(4461), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_static] = ACTIONS(4461), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4469), + [anon_sym_typedef] = ACTIONS(4461), + [anon_sym_extern] = ACTIONS(4461), + [anon_sym_auto] = ACTIONS(4461), + [anon_sym_register] = ACTIONS(4461), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [sym_function_specifier] = ACTIONS(4461), + [anon_sym_unsigned] = ACTIONS(4474), + [anon_sym_long] = ACTIONS(4474), + [anon_sym_short] = ACTIONS(4474), + [anon_sym_enum] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4474), + [anon_sym_union] = ACTIONS(4474), + [anon_sym_if] = ACTIONS(4461), + [anon_sym_switch] = ACTIONS(4461), + [anon_sym_case] = ACTIONS(4461), + [anon_sym_default] = ACTIONS(4461), + [anon_sym_while] = ACTIONS(4461), + [anon_sym_do] = ACTIONS(4461), + [anon_sym_for] = ACTIONS(4461), + [anon_sym_return] = ACTIONS(4461), + [anon_sym_break] = ACTIONS(4461), + [anon_sym_continue] = ACTIONS(4461), + [anon_sym_goto] = ACTIONS(4461), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_sizeof] = ACTIONS(4461), + [sym_number_literal] = ACTIONS(4461), + [sym_char_literal] = ACTIONS(4461), + [sym_string_literal] = ACTIONS(4461), + [sym_identifier] = ACTIONS(4479), [sym_comment] = ACTIONS(119), }, - [905] = { - [sym__expression] = STATE(907), + [906] = { + [sym__expression] = STATE(908), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -41935,282 +42019,282 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [906] = { - [ts_builtin_sym_end] = ACTIONS(2677), - [anon_sym_POUNDinclude] = ACTIONS(2680), - [anon_sym_POUNDdefine] = ACTIONS(2680), - [anon_sym_POUNDifdef] = ACTIONS(2680), - [anon_sym_POUNDifndef] = ACTIONS(2680), - [anon_sym_POUNDendif] = ACTIONS(2680), - [anon_sym_POUNDelse] = ACTIONS(2680), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_typedef] = ACTIONS(2680), - [anon_sym_extern] = ACTIONS(2680), - [anon_sym_auto] = ACTIONS(2680), - [anon_sym_register] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_restrict] = ACTIONS(2680), - [anon_sym_volatile] = ACTIONS(2680), - [sym_function_specifier] = ACTIONS(2680), - [anon_sym_unsigned] = ACTIONS(2680), - [anon_sym_long] = ACTIONS(2680), - [anon_sym_short] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_union] = ACTIONS(2680), - [sym_identifier] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [907] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [ts_builtin_sym_end] = ACTIONS(2689), + [anon_sym_POUNDinclude] = ACTIONS(2692), + [anon_sym_POUNDdefine] = ACTIONS(2692), + [anon_sym_POUNDifdef] = ACTIONS(2692), + [anon_sym_POUNDifndef] = ACTIONS(2692), + [anon_sym_POUNDendif] = ACTIONS(2692), + [anon_sym_POUNDelse] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [sym_function_specifier] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2695), [sym_comment] = ACTIONS(119), }, [908] = { - [anon_sym_RBRACE] = ACTIONS(4474), - [anon_sym_const] = ACTIONS(4477), - [anon_sym_restrict] = ACTIONS(4477), - [anon_sym_volatile] = ACTIONS(4477), - [anon_sym_unsigned] = ACTIONS(4477), - [anon_sym_long] = ACTIONS(4477), - [anon_sym_short] = ACTIONS(4477), - [anon_sym_enum] = ACTIONS(4477), - [anon_sym_struct] = ACTIONS(4477), - [anon_sym_union] = ACTIONS(4477), - [sym_identifier] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [909] = { - [sym__declarator] = STATE(911), - [sym_pointer_declarator] = STATE(30), - [sym_function_declarator] = STATE(30), - [sym_array_declarator] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(4455), - [sym_identifier] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4486), + [anon_sym_const] = ACTIONS(4489), + [anon_sym_restrict] = ACTIONS(4489), + [anon_sym_volatile] = ACTIONS(4489), + [anon_sym_unsigned] = ACTIONS(4489), + [anon_sym_long] = ACTIONS(4489), + [anon_sym_short] = ACTIONS(4489), + [anon_sym_enum] = ACTIONS(4489), + [anon_sym_struct] = ACTIONS(4489), + [anon_sym_union] = ACTIONS(4489), + [sym_identifier] = ACTIONS(4492), [sym_comment] = ACTIONS(119), }, [910] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(4483), - [anon_sym_SEMI] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_COLON] = ACTIONS(1052), + [sym__declarator] = STATE(912), + [sym_pointer_declarator] = STATE(30), + [sym_function_declarator] = STATE(30), + [sym_array_declarator] = STATE(30), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(4467), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [911] = { - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_COMMA] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(774), - [anon_sym_COLON] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_COLON] = ACTIONS(1061), [sym_comment] = ACTIONS(119), }, [912] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(892), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_COMMA] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym_EQ] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(783), [sym_comment] = ACTIONS(119), }, [913] = { - [sym__declarator] = STATE(915), - [sym__abstract_declarator] = STATE(268), - [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), - [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), - [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym_init_declarator] = STATE(519), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(4486), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [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(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(913), + [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(919), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [914] = { - [sym__declarator] = STATE(911), - [sym__abstract_declarator] = STATE(260), + [sym__declarator] = STATE(916), + [sym__abstract_declarator] = STATE(269), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(4486), - [anon_sym_LBRACK] = ACTIONS(2230), - [sym_identifier] = ACTIONS(212), + [sym_abstract_array_declarator] = STATE(211), + [sym_init_declarator] = STATE(520), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [915] = { - [sym_compound_statement] = STATE(713), - [aux_sym_declaration_repeat1] = STATE(520), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(4488), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(268), + [sym__declarator] = STATE(912), + [sym__abstract_declarator] = STATE(261), + [sym_pointer_declarator] = STATE(30), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_function_declarator] = STATE(30), + [sym_abstract_function_declarator] = STATE(211), + [sym_array_declarator] = STATE(30), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_LBRACK] = ACTIONS(2239), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [916] = { - [ts_builtin_sym_end] = ACTIONS(4491), - [anon_sym_POUNDinclude] = ACTIONS(4494), - [anon_sym_POUNDdefine] = ACTIONS(4494), - [anon_sym_POUNDifdef] = ACTIONS(4494), - [anon_sym_POUNDifndef] = ACTIONS(4494), - [anon_sym_POUNDendif] = ACTIONS(4494), - [anon_sym_POUNDelse] = ACTIONS(4494), - [sym_preproc_directive] = ACTIONS(4497), - [anon_sym_static] = ACTIONS(4494), - [anon_sym_typedef] = ACTIONS(4494), - [anon_sym_extern] = ACTIONS(4494), - [anon_sym_auto] = ACTIONS(4494), - [anon_sym_register] = ACTIONS(4494), - [anon_sym_const] = ACTIONS(4494), - [anon_sym_restrict] = ACTIONS(4494), - [anon_sym_volatile] = ACTIONS(4494), - [sym_function_specifier] = ACTIONS(4494), - [anon_sym_unsigned] = ACTIONS(4494), - [anon_sym_long] = ACTIONS(4494), - [anon_sym_short] = ACTIONS(4494), - [anon_sym_enum] = ACTIONS(4494), - [anon_sym_struct] = ACTIONS(4494), - [anon_sym_union] = ACTIONS(4494), - [sym_identifier] = ACTIONS(4497), + [sym_compound_statement] = STATE(714), + [aux_sym_declaration_repeat1] = STATE(521), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(275), [sym_comment] = ACTIONS(119), }, [917] = { - [sym__type_specifier] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(4503), + [anon_sym_POUNDinclude] = ACTIONS(4506), + [anon_sym_POUNDdefine] = ACTIONS(4506), + [anon_sym_POUNDifdef] = ACTIONS(4506), + [anon_sym_POUNDifndef] = ACTIONS(4506), + [anon_sym_POUNDendif] = ACTIONS(4506), + [anon_sym_POUNDelse] = ACTIONS(4506), + [sym_preproc_directive] = ACTIONS(4509), + [anon_sym_static] = ACTIONS(4506), + [anon_sym_typedef] = ACTIONS(4506), + [anon_sym_extern] = ACTIONS(4506), + [anon_sym_auto] = ACTIONS(4506), + [anon_sym_register] = ACTIONS(4506), + [anon_sym_const] = ACTIONS(4506), + [anon_sym_restrict] = ACTIONS(4506), + [anon_sym_volatile] = ACTIONS(4506), + [sym_function_specifier] = ACTIONS(4506), + [anon_sym_unsigned] = ACTIONS(4506), + [anon_sym_long] = ACTIONS(4506), + [anon_sym_short] = ACTIONS(4506), + [anon_sym_enum] = ACTIONS(4506), + [anon_sym_struct] = ACTIONS(4506), + [anon_sym_union] = ACTIONS(4506), + [sym_identifier] = ACTIONS(4509), + [sym_comment] = ACTIONS(119), + }, + [918] = { + [sym__type_specifier] = STATE(272), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), [sym_macro_type_specifier] = STATE(19), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1670), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1679), [anon_sym_unsigned] = ACTIONS(137), [anon_sym_long] = ACTIONS(137), [anon_sym_short] = ACTIONS(137), [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [sym_identifier] = ACTIONS(4500), + [sym_identifier] = ACTIONS(4512), [sym_comment] = ACTIONS(119), }, - [918] = { + [919] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), - [sym__enum_specifier_contents] = STATE(449), + [sym__enum_specifier_contents] = STATE(450), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(278), - [sym_enumerator] = STATE(450), + [sym_struct_declaration] = STATE(279), + [sym_enumerator] = STATE(451), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym_struct_specifier_repeat1] = STATE(921), - [anon_sym_RBRACE] = ACTIONS(4502), + [aux_sym_struct_specifier_repeat1] = STATE(922), + [anon_sym_RBRACE] = ACTIONS(4514), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -42220,43 +42304,43 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [sym_identifier] = ACTIONS(4504), - [sym_comment] = ACTIONS(119), - }, - [919] = { - [anon_sym_LPAREN] = ACTIONS(4506), - [anon_sym_COMMA] = ACTIONS(4506), - [anon_sym_RPAREN] = ACTIONS(4506), - [anon_sym_SEMI] = ACTIONS(4506), - [anon_sym_STAR] = ACTIONS(4506), - [anon_sym_LBRACK] = ACTIONS(4506), - [anon_sym_COLON] = ACTIONS(4506), - [sym_identifier] = ACTIONS(4509), + [sym_identifier] = ACTIONS(4516), [sym_comment] = ACTIONS(119), }, [920] = { - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(188), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1096), - [anon_sym_COLON] = ACTIONS(188), - [sym_identifier] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(4518), + [anon_sym_COMMA] = ACTIONS(4518), + [anon_sym_RPAREN] = ACTIONS(4518), + [anon_sym_SEMI] = ACTIONS(4518), + [anon_sym_STAR] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4518), + [anon_sym_COLON] = ACTIONS(4518), + [sym_identifier] = ACTIONS(4521), [sym_comment] = ACTIONS(119), }, [921] = { + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(190), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1105), + [anon_sym_COLON] = ACTIONS(190), + [sym_identifier] = ACTIONS(192), + [sym_comment] = ACTIONS(119), + }, + [922] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(277), + [sym__type_specifier] = STATE(278), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_struct_declaration] = STATE(282), + [sym_struct_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(19), - [aux_sym_array_declarator_repeat1] = STATE(279), + [aux_sym_array_declarator_repeat1] = STATE(280), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4524), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -42269,70 +42353,70 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [922] = { - [anon_sym_LPAREN] = ACTIONS(4514), - [anon_sym_COMMA] = ACTIONS(4514), - [anon_sym_RPAREN] = ACTIONS(4514), - [anon_sym_SEMI] = ACTIONS(4514), - [anon_sym_STAR] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_COLON] = ACTIONS(4514), - [sym_identifier] = ACTIONS(4517), - [sym_comment] = ACTIONS(119), - }, [923] = { - [aux_sym_preproc_params_repeat1] = STATE(742), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(4520), + [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), [sym_comment] = ACTIONS(119), }, [924] = { - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_RBRACK] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(4526), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_COLON] = ACTIONS(450), - [anon_sym_QMARK] = ACTIONS(450), - [anon_sym_STAR_EQ] = ACTIONS(450), - [anon_sym_SLASH_EQ] = ACTIONS(450), - [anon_sym_PERCENT_EQ] = ACTIONS(450), - [anon_sym_PLUS_EQ] = ACTIONS(450), - [anon_sym_DASH_EQ] = ACTIONS(450), - [anon_sym_LT_LT_EQ] = ACTIONS(450), - [anon_sym_GT_GT_EQ] = ACTIONS(450), - [anon_sym_AMP_EQ] = ACTIONS(450), - [anon_sym_CARET_EQ] = ACTIONS(450), - [anon_sym_PIPE_EQ] = ACTIONS(450), - [anon_sym_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(450), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_DASH_DASH] = ACTIONS(450), - [anon_sym_PLUS_PLUS] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(4523), - [anon_sym_DASH_GT] = ACTIONS(450), + [aux_sym_preproc_params_repeat1] = STATE(743), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(4532), [sym_comment] = ACTIONS(119), }, [925] = { + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_RPAREN] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_STAR] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_RBRACK] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_RBRACE] = ACTIONS(457), + [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(4535), + [anon_sym_DASH_GT] = ACTIONS(457), + [sym_comment] = ACTIONS(119), + }, + [926] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -42355,12 +42439,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(799), + [sym_type_name] = STATE(800), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -42370,467 +42454,467 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [926] = { - [anon_sym_LPAREN] = ACTIONS(4115), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_COLON] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(4535), - [anon_sym_STAR_EQ] = ACTIONS(4538), - [anon_sym_SLASH_EQ] = ACTIONS(4538), - [anon_sym_PERCENT_EQ] = ACTIONS(4538), - [anon_sym_PLUS_EQ] = ACTIONS(4538), - [anon_sym_DASH_EQ] = ACTIONS(4538), - [anon_sym_LT_LT_EQ] = ACTIONS(4538), - [anon_sym_GT_GT_EQ] = ACTIONS(4538), - [anon_sym_AMP_EQ] = ACTIONS(4538), - [anon_sym_CARET_EQ] = ACTIONS(4538), - [anon_sym_PIPE_EQ] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4544), - [anon_sym_AMP_AMP] = ACTIONS(4544), - [anon_sym_PIPE] = ACTIONS(4541), - [anon_sym_CARET] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4550), - [anon_sym_GT] = ACTIONS(4550), - [anon_sym_LT_EQ] = ACTIONS(4553), - [anon_sym_GT_EQ] = ACTIONS(4553), - [anon_sym_LT_LT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4154), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [927] = { - [anon_sym_LPAREN] = ACTIONS(4559), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_STAR] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4570), - [anon_sym_RBRACK] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4574), - [anon_sym_RBRACE] = ACTIONS(4563), - [anon_sym_COLON] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4578), - [anon_sym_STAR_EQ] = ACTIONS(4582), - [anon_sym_SLASH_EQ] = ACTIONS(4582), - [anon_sym_PERCENT_EQ] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(4582), - [anon_sym_DASH_EQ] = ACTIONS(4582), - [anon_sym_LT_LT_EQ] = ACTIONS(4582), - [anon_sym_GT_GT_EQ] = ACTIONS(4582), - [anon_sym_AMP_EQ] = ACTIONS(4582), - [anon_sym_CARET_EQ] = ACTIONS(4582), - [anon_sym_PIPE_EQ] = ACTIONS(4582), - [anon_sym_AMP] = ACTIONS(4586), - [anon_sym_PIPE_PIPE] = ACTIONS(4590), - [anon_sym_AMP_AMP] = ACTIONS(4590), - [anon_sym_PIPE] = ACTIONS(4586), - [anon_sym_CARET] = ACTIONS(4586), - [anon_sym_EQ_EQ] = ACTIONS(4594), - [anon_sym_BANG_EQ] = ACTIONS(4594), - [anon_sym_LT] = ACTIONS(4598), - [anon_sym_GT] = ACTIONS(4598), - [anon_sym_LT_EQ] = ACTIONS(4602), - [anon_sym_GT_EQ] = ACTIONS(4602), - [anon_sym_LT_LT] = ACTIONS(4606), - [anon_sym_GT_GT] = ACTIONS(4606), - [anon_sym_PLUS] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_PERCENT] = ACTIONS(4566), - [anon_sym_DASH_DASH] = ACTIONS(4610), - [anon_sym_PLUS_PLUS] = ACTIONS(4610), - [anon_sym_DOT] = ACTIONS(4614), - [anon_sym_DASH_GT] = ACTIONS(4614), + [anon_sym_LPAREN] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4133), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(4544), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(4547), + [anon_sym_STAR_EQ] = ACTIONS(4550), + [anon_sym_SLASH_EQ] = ACTIONS(4550), + [anon_sym_PERCENT_EQ] = ACTIONS(4550), + [anon_sym_PLUS_EQ] = ACTIONS(4550), + [anon_sym_DASH_EQ] = ACTIONS(4550), + [anon_sym_LT_LT_EQ] = ACTIONS(4550), + [anon_sym_GT_GT_EQ] = ACTIONS(4550), + [anon_sym_AMP_EQ] = ACTIONS(4550), + [anon_sym_CARET_EQ] = ACTIONS(4550), + [anon_sym_PIPE_EQ] = ACTIONS(4550), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_PIPE_PIPE] = ACTIONS(4556), + [anon_sym_AMP_AMP] = ACTIONS(4556), + [anon_sym_PIPE] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_LT_LT] = ACTIONS(4568), + [anon_sym_GT_GT] = ACTIONS(4568), + [anon_sym_PLUS] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_SLASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4163), + [anon_sym_PLUS_PLUS] = ACTIONS(4163), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), [sym_comment] = ACTIONS(119), }, [928] = { - [anon_sym_LPAREN] = ACTIONS(3846), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(4618), - [anon_sym_LBRACK] = ACTIONS(3852), - [anon_sym_RBRACK] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(4621), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(4624), - [anon_sym_STAR_EQ] = ACTIONS(4627), - [anon_sym_SLASH_EQ] = ACTIONS(4627), - [anon_sym_PERCENT_EQ] = ACTIONS(4627), - [anon_sym_PLUS_EQ] = ACTIONS(4627), - [anon_sym_DASH_EQ] = ACTIONS(4627), - [anon_sym_LT_LT_EQ] = ACTIONS(4627), - [anon_sym_GT_GT_EQ] = ACTIONS(4627), - [anon_sym_AMP_EQ] = ACTIONS(4627), - [anon_sym_CARET_EQ] = ACTIONS(4627), - [anon_sym_PIPE_EQ] = ACTIONS(4627), - [anon_sym_AMP] = ACTIONS(4630), - [anon_sym_PIPE_PIPE] = ACTIONS(4633), - [anon_sym_AMP_AMP] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_CARET] = ACTIONS(4630), - [anon_sym_EQ_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4642), - [anon_sym_GT_EQ] = ACTIONS(4642), - [anon_sym_LT_LT] = ACTIONS(4645), - [anon_sym_GT_GT] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4618), - [anon_sym_DASH] = ACTIONS(4618), - [anon_sym_SLASH] = ACTIONS(4618), - [anon_sym_PERCENT] = ACTIONS(4618), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3885), - [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(4571), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_RBRACK] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4590), + [anon_sym_STAR_EQ] = ACTIONS(4594), + [anon_sym_SLASH_EQ] = ACTIONS(4594), + [anon_sym_PERCENT_EQ] = ACTIONS(4594), + [anon_sym_PLUS_EQ] = ACTIONS(4594), + [anon_sym_DASH_EQ] = ACTIONS(4594), + [anon_sym_LT_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_GT_EQ] = ACTIONS(4594), + [anon_sym_AMP_EQ] = ACTIONS(4594), + [anon_sym_CARET_EQ] = ACTIONS(4594), + [anon_sym_PIPE_EQ] = ACTIONS(4594), + [anon_sym_AMP] = ACTIONS(4598), + [anon_sym_PIPE_PIPE] = ACTIONS(4602), + [anon_sym_AMP_AMP] = ACTIONS(4602), + [anon_sym_PIPE] = ACTIONS(4598), + [anon_sym_CARET] = ACTIONS(4598), + [anon_sym_EQ_EQ] = ACTIONS(4606), + [anon_sym_BANG_EQ] = ACTIONS(4606), + [anon_sym_LT] = ACTIONS(4610), + [anon_sym_GT] = ACTIONS(4610), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4618), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_DASH_DASH] = ACTIONS(4622), + [anon_sym_PLUS_PLUS] = ACTIONS(4622), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_DASH_GT] = ACTIONS(4626), [sym_comment] = ACTIONS(119), }, [929] = { - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_RBRACK] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_COLON] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(4654), - [anon_sym_STAR_EQ] = ACTIONS(4657), - [anon_sym_SLASH_EQ] = ACTIONS(4657), - [anon_sym_PERCENT_EQ] = ACTIONS(4657), - [anon_sym_PLUS_EQ] = ACTIONS(4657), - [anon_sym_DASH_EQ] = ACTIONS(4657), - [anon_sym_LT_LT_EQ] = ACTIONS(4657), - [anon_sym_GT_GT_EQ] = ACTIONS(4657), - [anon_sym_AMP_EQ] = ACTIONS(4657), - [anon_sym_CARET_EQ] = ACTIONS(4657), - [anon_sym_PIPE_EQ] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4660), - [anon_sym_PIPE_PIPE] = ACTIONS(4663), - [anon_sym_AMP_AMP] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4660), - [anon_sym_CARET] = ACTIONS(4660), - [anon_sym_EQ_EQ] = ACTIONS(4666), - [anon_sym_BANG_EQ] = ACTIONS(4666), - [anon_sym_LT] = ACTIONS(4669), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_LT_LT] = ACTIONS(4675), - [anon_sym_GT_GT] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3858), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(4633), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(4636), + [anon_sym_STAR_EQ] = ACTIONS(4639), + [anon_sym_SLASH_EQ] = ACTIONS(4639), + [anon_sym_PERCENT_EQ] = ACTIONS(4639), + [anon_sym_PLUS_EQ] = ACTIONS(4639), + [anon_sym_DASH_EQ] = ACTIONS(4639), + [anon_sym_LT_LT_EQ] = ACTIONS(4639), + [anon_sym_GT_GT_EQ] = ACTIONS(4639), + [anon_sym_AMP_EQ] = ACTIONS(4639), + [anon_sym_CARET_EQ] = ACTIONS(4639), + [anon_sym_PIPE_EQ] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4642), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4642), + [anon_sym_CARET] = ACTIONS(4642), + [anon_sym_EQ_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4651), + [anon_sym_GT] = ACTIONS(4651), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_LT_LT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4657), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_DASH_DASH] = ACTIONS(3894), + [anon_sym_PLUS_PLUS] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3897), + [anon_sym_DASH_GT] = ACTIONS(3897), [sym_comment] = ACTIONS(119), }, [930] = { - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_LBRACK] = ACTIONS(3936), - [anon_sym_RBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(4684), - [anon_sym_STAR_EQ] = ACTIONS(4687), - [anon_sym_SLASH_EQ] = ACTIONS(4687), - [anon_sym_PERCENT_EQ] = ACTIONS(4687), - [anon_sym_PLUS_EQ] = ACTIONS(4687), - [anon_sym_DASH_EQ] = ACTIONS(4687), - [anon_sym_LT_LT_EQ] = ACTIONS(4687), - [anon_sym_GT_GT_EQ] = ACTIONS(4687), - [anon_sym_AMP_EQ] = ACTIONS(4687), - [anon_sym_CARET_EQ] = ACTIONS(4687), - [anon_sym_PIPE_EQ] = ACTIONS(4687), - [anon_sym_AMP] = ACTIONS(4690), - [anon_sym_PIPE_PIPE] = ACTIONS(4693), - [anon_sym_AMP_AMP] = ACTIONS(4693), - [anon_sym_PIPE] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4690), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4702), - [anon_sym_GT_EQ] = ACTIONS(4702), - [anon_sym_LT_LT] = ACTIONS(4705), - [anon_sym_GT_GT] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4678), - [anon_sym_DASH] = ACTIONS(4678), - [anon_sym_SLASH] = ACTIONS(4678), - [anon_sym_PERCENT] = ACTIONS(4678), - [anon_sym_DASH_DASH] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_RBRACK] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_COLON] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_STAR_EQ] = ACTIONS(4669), + [anon_sym_SLASH_EQ] = ACTIONS(4669), + [anon_sym_PERCENT_EQ] = ACTIONS(4669), + [anon_sym_PLUS_EQ] = ACTIONS(4669), + [anon_sym_DASH_EQ] = ACTIONS(4669), + [anon_sym_LT_LT_EQ] = ACTIONS(4669), + [anon_sym_GT_GT_EQ] = ACTIONS(4669), + [anon_sym_AMP_EQ] = ACTIONS(4669), + [anon_sym_CARET_EQ] = ACTIONS(4669), + [anon_sym_PIPE_EQ] = ACTIONS(4669), + [anon_sym_AMP] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4675), + [anon_sym_AMP_AMP] = ACTIONS(4675), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4681), + [anon_sym_GT] = ACTIONS(4681), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_LT_LT] = ACTIONS(4687), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(3939), + [anon_sym_DASH_GT] = ACTIONS(3939), [sym_comment] = ACTIONS(119), }, [931] = { - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_COMMA] = ACTIONS(1022), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_RBRACK] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(4711), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_QMARK] = ACTIONS(4714), - [anon_sym_STAR_EQ] = ACTIONS(4717), - [anon_sym_SLASH_EQ] = ACTIONS(4717), - [anon_sym_PERCENT_EQ] = ACTIONS(4717), - [anon_sym_PLUS_EQ] = ACTIONS(4717), - [anon_sym_DASH_EQ] = ACTIONS(4717), - [anon_sym_LT_LT_EQ] = ACTIONS(4717), - [anon_sym_GT_GT_EQ] = ACTIONS(4717), - [anon_sym_AMP_EQ] = ACTIONS(4717), - [anon_sym_CARET_EQ] = ACTIONS(4717), - [anon_sym_PIPE_EQ] = ACTIONS(4717), - [anon_sym_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4729), - [anon_sym_LT_EQ] = ACTIONS(4732), - [anon_sym_GT_EQ] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4735), - [anon_sym_GT_GT] = ACTIONS(4735), - [anon_sym_PLUS] = ACTIONS(4708), - [anon_sym_DASH] = ACTIONS(4708), - [anon_sym_SLASH] = ACTIONS(4708), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_PLUS_PLUS] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4272), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(3948), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4699), + [anon_sym_SLASH_EQ] = ACTIONS(4699), + [anon_sym_PERCENT_EQ] = ACTIONS(4699), + [anon_sym_PLUS_EQ] = ACTIONS(4699), + [anon_sym_DASH_EQ] = ACTIONS(4699), + [anon_sym_LT_LT_EQ] = ACTIONS(4699), + [anon_sym_GT_GT_EQ] = ACTIONS(4699), + [anon_sym_AMP_EQ] = ACTIONS(4699), + [anon_sym_CARET_EQ] = ACTIONS(4699), + [anon_sym_PIPE_EQ] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4702), + [anon_sym_PIPE_PIPE] = ACTIONS(4705), + [anon_sym_AMP_AMP] = ACTIONS(4705), + [anon_sym_PIPE] = ACTIONS(4702), + [anon_sym_CARET] = ACTIONS(4702), + [anon_sym_EQ_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4708), + [anon_sym_LT] = ACTIONS(4711), + [anon_sym_GT] = ACTIONS(4711), + [anon_sym_LT_EQ] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4717), + [anon_sym_GT_GT] = ACTIONS(4717), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_DASH_GT] = ACTIONS(3981), [sym_comment] = ACTIONS(119), }, [932] = { - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(4738), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_RBRACK] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_STAR_EQ] = ACTIONS(4747), - [anon_sym_SLASH_EQ] = ACTIONS(4747), - [anon_sym_PERCENT_EQ] = ACTIONS(4747), - [anon_sym_PLUS_EQ] = ACTIONS(4747), - [anon_sym_DASH_EQ] = ACTIONS(4747), - [anon_sym_LT_LT_EQ] = ACTIONS(4747), - [anon_sym_GT_GT_EQ] = ACTIONS(4747), - [anon_sym_AMP_EQ] = ACTIONS(4747), - [anon_sym_CARET_EQ] = ACTIONS(4747), - [anon_sym_PIPE_EQ] = ACTIONS(4747), - [anon_sym_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4750), - [anon_sym_CARET] = ACTIONS(4750), - [anon_sym_EQ_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4759), - [anon_sym_GT] = ACTIONS(4759), - [anon_sym_LT_EQ] = ACTIONS(4762), - [anon_sym_GT_EQ] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4765), - [anon_sym_GT_GT] = ACTIONS(4765), - [anon_sym_PLUS] = ACTIONS(4738), - [anon_sym_DASH] = ACTIONS(4738), - [anon_sym_SLASH] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(4738), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4251), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1031), + [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(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4284), [sym_comment] = ACTIONS(119), }, [933] = { - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_COLON] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4777), - [anon_sym_SLASH_EQ] = ACTIONS(4777), - [anon_sym_PERCENT_EQ] = ACTIONS(4777), - [anon_sym_PLUS_EQ] = ACTIONS(4777), - [anon_sym_DASH_EQ] = ACTIONS(4777), - [anon_sym_LT_LT_EQ] = ACTIONS(4777), - [anon_sym_GT_GT_EQ] = ACTIONS(4777), - [anon_sym_AMP_EQ] = ACTIONS(4777), - [anon_sym_CARET_EQ] = ACTIONS(4777), - [anon_sym_PIPE_EQ] = ACTIONS(4777), - [anon_sym_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4783), - [anon_sym_AMP_AMP] = ACTIONS(4783), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_CARET] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4789), - [anon_sym_GT] = ACTIONS(4789), - [anon_sym_LT_EQ] = ACTIONS(4792), - [anon_sym_GT_EQ] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4795), - [anon_sym_GT_GT] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4768), - [anon_sym_DASH] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4041), + [anon_sym_LPAREN] = ACTIONS(4287), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(4753), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4759), + [anon_sym_SLASH_EQ] = ACTIONS(4759), + [anon_sym_PERCENT_EQ] = ACTIONS(4759), + [anon_sym_PLUS_EQ] = ACTIONS(4759), + [anon_sym_DASH_EQ] = ACTIONS(4759), + [anon_sym_LT_LT_EQ] = ACTIONS(4759), + [anon_sym_GT_GT_EQ] = ACTIONS(4759), + [anon_sym_AMP_EQ] = ACTIONS(4759), + [anon_sym_CARET_EQ] = ACTIONS(4759), + [anon_sym_PIPE_EQ] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_CARET] = ACTIONS(4762), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4774), + [anon_sym_GT_EQ] = ACTIONS(4774), + [anon_sym_LT_LT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4777), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4326), [sym_comment] = ACTIONS(119), }, [934] = { - [anon_sym_LPAREN] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_STAR] = ACTIONS(4805), - [anon_sym_LBRACK] = ACTIONS(4809), - [anon_sym_RBRACK] = ACTIONS(4802), - [anon_sym_EQ] = ACTIONS(4813), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_COLON] = ACTIONS(4802), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_STAR_EQ] = ACTIONS(4821), - [anon_sym_SLASH_EQ] = ACTIONS(4821), - [anon_sym_PERCENT_EQ] = ACTIONS(4821), - [anon_sym_PLUS_EQ] = ACTIONS(4821), - [anon_sym_DASH_EQ] = ACTIONS(4821), - [anon_sym_LT_LT_EQ] = ACTIONS(4821), - [anon_sym_GT_GT_EQ] = ACTIONS(4821), - [anon_sym_AMP_EQ] = ACTIONS(4821), - [anon_sym_CARET_EQ] = ACTIONS(4821), - [anon_sym_PIPE_EQ] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_CARET] = ACTIONS(4825), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_LT_EQ] = ACTIONS(4841), - [anon_sym_GT_EQ] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4845), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_PLUS] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4805), - [anon_sym_PERCENT] = ACTIONS(4805), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DOT] = ACTIONS(4853), - [anon_sym_DASH_GT] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_RBRACK] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(4783), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4789), + [anon_sym_SLASH_EQ] = ACTIONS(4789), + [anon_sym_PERCENT_EQ] = ACTIONS(4789), + [anon_sym_PLUS_EQ] = ACTIONS(4789), + [anon_sym_DASH_EQ] = ACTIONS(4789), + [anon_sym_LT_LT_EQ] = ACTIONS(4789), + [anon_sym_GT_GT_EQ] = ACTIONS(4789), + [anon_sym_AMP_EQ] = ACTIONS(4789), + [anon_sym_CARET_EQ] = ACTIONS(4789), + [anon_sym_PIPE_EQ] = ACTIONS(4789), + [anon_sym_AMP] = ACTIONS(4792), + [anon_sym_PIPE_PIPE] = ACTIONS(4795), + [anon_sym_AMP_AMP] = ACTIONS(4795), + [anon_sym_PIPE] = ACTIONS(4792), + [anon_sym_CARET] = ACTIONS(4792), + [anon_sym_EQ_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4801), + [anon_sym_GT] = ACTIONS(4801), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4807), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4053), + [anon_sym_DASH_GT] = ACTIONS(4053), [sym_comment] = ACTIONS(119), }, [935] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_RPAREN] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4821), + [anon_sym_RBRACK] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4825), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_COLON] = ACTIONS(4814), + [anon_sym_QMARK] = ACTIONS(4829), + [anon_sym_STAR_EQ] = ACTIONS(4833), + [anon_sym_SLASH_EQ] = ACTIONS(4833), + [anon_sym_PERCENT_EQ] = ACTIONS(4833), + [anon_sym_PLUS_EQ] = ACTIONS(4833), + [anon_sym_DASH_EQ] = ACTIONS(4833), + [anon_sym_LT_LT_EQ] = ACTIONS(4833), + [anon_sym_GT_GT_EQ] = ACTIONS(4833), + [anon_sym_AMP_EQ] = ACTIONS(4833), + [anon_sym_CARET_EQ] = ACTIONS(4833), + [anon_sym_PIPE_EQ] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4837), + [anon_sym_PIPE_PIPE] = ACTIONS(4841), + [anon_sym_AMP_AMP] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym_EQ_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_LT_EQ] = ACTIONS(4853), + [anon_sym_GT_EQ] = ACTIONS(4853), + [anon_sym_LT_LT] = ACTIONS(4857), + [anon_sym_GT_GT] = ACTIONS(4857), + [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(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_DASH_GT] = ACTIONS(4865), [sym_comment] = ACTIONS(119), }, [936] = { - [sym__expression] = STATE(937), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(4869), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [937] = { + [sym__expression] = STATE(938), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -42846,69 +42930,69 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [937] = { - [anon_sym_LPAREN] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_COLON] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(3749), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3752), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3758), - [anon_sym_AMP_AMP] = ACTIONS(3758), - [anon_sym_PIPE] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(3761), - [anon_sym_BANG_EQ] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3767), - [anon_sym_GT_EQ] = ACTIONS(3767), - [anon_sym_LT_LT] = ACTIONS(3770), - [anon_sym_GT_GT] = ACTIONS(3770), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3773), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3776), - [anon_sym_DASH_GT] = ACTIONS(3776), + [938] = { + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_RBRACK] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_COLON] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(3761), + [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(3767), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_PIPE] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), + [anon_sym_EQ_EQ] = ACTIONS(3773), + [anon_sym_BANG_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_GT] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3779), + [anon_sym_GT_EQ] = ACTIONS(3779), + [anon_sym_LT_LT] = ACTIONS(3782), + [anon_sym_GT_GT] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_SLASH] = ACTIONS(3752), + [anon_sym_PERCENT] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3785), + [anon_sym_PLUS_PLUS] = ACTIONS(3785), + [anon_sym_DOT] = ACTIONS(3788), + [anon_sym_DASH_GT] = ACTIONS(3788), [sym_comment] = ACTIONS(119), }, - [938] = { - [sym__expression] = STATE(939), + [939] = { + [sym__expression] = STATE(940), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -42924,279 +43008,279 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [939] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(654), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = 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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [940] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(597), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4864), - [anon_sym_STAR] = ACTIONS(4867), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [sym_function_specifier] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(4867), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4876), - [anon_sym_PLUS_PLUS] = ACTIONS(4876), - [anon_sym_sizeof] = ACTIONS(3625), - [sym_number_literal] = ACTIONS(1964), - [sym_char_literal] = ACTIONS(1964), - [sym_string_literal] = ACTIONS(1964), - [sym_identifier] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_PERCENT_EQ] = ACTIONS(655), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_CARET_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [941] = { - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(598), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [anon_sym_LPAREN] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4876), [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_static] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_typedef] = ACTIONS(4883), - [anon_sym_extern] = ACTIONS(4883), - [anon_sym_auto] = ACTIONS(4883), - [anon_sym_register] = ACTIONS(4883), - [anon_sym_const] = ACTIONS(4883), - [anon_sym_restrict] = ACTIONS(4883), - [anon_sym_volatile] = ACTIONS(4883), - [sym_function_specifier] = ACTIONS(4883), - [anon_sym_unsigned] = ACTIONS(4883), - [anon_sym_long] = ACTIONS(4883), - [anon_sym_short] = ACTIONS(4883), - [anon_sym_enum] = ACTIONS(4883), - [anon_sym_struct] = ACTIONS(4883), - [anon_sym_union] = ACTIONS(4883), - [anon_sym_if] = ACTIONS(4883), - [anon_sym_else] = ACTIONS(4883), - [anon_sym_switch] = ACTIONS(4883), - [anon_sym_case] = ACTIONS(4883), - [anon_sym_default] = ACTIONS(4883), - [anon_sym_while] = ACTIONS(4883), - [anon_sym_do] = ACTIONS(4883), - [anon_sym_for] = ACTIONS(4883), - [anon_sym_return] = ACTIONS(4883), - [anon_sym_break] = ACTIONS(4883), - [anon_sym_continue] = ACTIONS(4883), - [anon_sym_goto] = ACTIONS(4883), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [sym_function_specifier] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1931), [anon_sym_AMP] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_PLUS] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_sizeof] = ACTIONS(4883), - [sym_number_literal] = ACTIONS(4883), - [sym_char_literal] = ACTIONS(4883), - [sym_string_literal] = ACTIONS(4883), - [sym_identifier] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(3637), + [sym_number_literal] = ACTIONS(1973), + [sym_char_literal] = ACTIONS(1973), + [sym_string_literal] = ACTIONS(1973), + [sym_identifier] = ACTIONS(3640), [sym_comment] = ACTIONS(119), }, [942] = { - [anon_sym_LPAREN] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(4891), [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_COLON] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(3749), - [anon_sym_STAR_EQ] = ACTIONS(3752), - [anon_sym_SLASH_EQ] = ACTIONS(3752), - [anon_sym_PERCENT_EQ] = ACTIONS(3752), - [anon_sym_PLUS_EQ] = ACTIONS(3752), - [anon_sym_DASH_EQ] = ACTIONS(3752), - [anon_sym_LT_LT_EQ] = ACTIONS(3752), - [anon_sym_GT_GT_EQ] = ACTIONS(3752), - [anon_sym_AMP_EQ] = ACTIONS(3752), - [anon_sym_CARET_EQ] = ACTIONS(3752), - [anon_sym_PIPE_EQ] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3755), - [anon_sym_PIPE_PIPE] = ACTIONS(3758), - [anon_sym_AMP_AMP] = ACTIONS(3758), - [anon_sym_PIPE] = ACTIONS(3755), - [anon_sym_CARET] = ACTIONS(3755), - [anon_sym_EQ_EQ] = ACTIONS(3761), - [anon_sym_BANG_EQ] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3767), - [anon_sym_GT_EQ] = ACTIONS(3767), - [anon_sym_LT_LT] = ACTIONS(3770), - [anon_sym_GT_GT] = ACTIONS(3770), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3773), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3776), - [anon_sym_DASH_GT] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_static] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_RBRACE] = ACTIONS(4891), + [anon_sym_typedef] = ACTIONS(4895), + [anon_sym_extern] = ACTIONS(4895), + [anon_sym_auto] = ACTIONS(4895), + [anon_sym_register] = ACTIONS(4895), + [anon_sym_const] = ACTIONS(4895), + [anon_sym_restrict] = ACTIONS(4895), + [anon_sym_volatile] = ACTIONS(4895), + [sym_function_specifier] = ACTIONS(4895), + [anon_sym_unsigned] = ACTIONS(4895), + [anon_sym_long] = ACTIONS(4895), + [anon_sym_short] = ACTIONS(4895), + [anon_sym_enum] = ACTIONS(4895), + [anon_sym_struct] = ACTIONS(4895), + [anon_sym_union] = ACTIONS(4895), + [anon_sym_if] = ACTIONS(4895), + [anon_sym_else] = ACTIONS(4895), + [anon_sym_switch] = ACTIONS(4895), + [anon_sym_case] = ACTIONS(4895), + [anon_sym_default] = ACTIONS(4895), + [anon_sym_while] = ACTIONS(4895), + [anon_sym_do] = ACTIONS(4895), + [anon_sym_for] = ACTIONS(4895), + [anon_sym_return] = ACTIONS(4895), + [anon_sym_break] = ACTIONS(4895), + [anon_sym_continue] = ACTIONS(4895), + [anon_sym_goto] = ACTIONS(4895), + [anon_sym_AMP] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(4891), + [anon_sym_TILDE] = ACTIONS(4891), + [anon_sym_PLUS] = ACTIONS(4895), + [anon_sym_DASH] = ACTIONS(4895), + [anon_sym_DASH_DASH] = ACTIONS(4891), + [anon_sym_PLUS_PLUS] = ACTIONS(4891), + [anon_sym_sizeof] = ACTIONS(4895), + [sym_number_literal] = ACTIONS(4895), + [sym_char_literal] = ACTIONS(4895), + [sym_string_literal] = ACTIONS(4895), + [sym_identifier] = ACTIONS(4899), [sym_comment] = ACTIONS(119), }, [943] = { - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(4900), - [anon_sym_restrict] = ACTIONS(4900), - [anon_sym_volatile] = ACTIONS(4900), - [sym_function_specifier] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(4900), - [anon_sym_long] = ACTIONS(4900), - [anon_sym_short] = ACTIONS(4900), - [anon_sym_enum] = ACTIONS(4900), - [anon_sym_struct] = ACTIONS(4900), - [anon_sym_union] = ACTIONS(4900), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [sym_string_literal] = ACTIONS(1278), - [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_RBRACK] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_COLON] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(3761), + [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(3767), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_PIPE] = ACTIONS(3767), + [anon_sym_CARET] = ACTIONS(3767), + [anon_sym_EQ_EQ] = ACTIONS(3773), + [anon_sym_BANG_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_GT] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3779), + [anon_sym_GT_EQ] = ACTIONS(3779), + [anon_sym_LT_LT] = ACTIONS(3782), + [anon_sym_GT_GT] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_SLASH] = ACTIONS(3752), + [anon_sym_PERCENT] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3785), + [anon_sym_PLUS_PLUS] = ACTIONS(3785), + [anon_sym_DOT] = ACTIONS(3788), + [anon_sym_DASH_GT] = ACTIONS(3788), [sym_comment] = ACTIONS(119), }, [944] = { + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(4912), + [anon_sym_restrict] = ACTIONS(4912), + [anon_sym_volatile] = ACTIONS(4912), + [sym_function_specifier] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(4912), + [anon_sym_long] = ACTIONS(4912), + [anon_sym_short] = ACTIONS(4912), + [anon_sym_enum] = ACTIONS(4912), + [anon_sym_struct] = ACTIONS(4912), + [anon_sym_union] = ACTIONS(4912), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_else] = 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(4918), + [sym_comment] = ACTIONS(119), + }, + [945] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -43219,12 +43303,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(986), + [sym_type_name] = STATE(987), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -43234,22 +43318,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, - [945] = { - [sym__expression] = STATE(985), + [946] = { + [sym__expression] = STATE(986), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43265,47 +43349,47 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [946] = { - [sym_declaration] = STATE(506), - [sym__declaration_specifiers] = STATE(507), - [sym_compound_statement] = STATE(508), + [947] = { + [sym_declaration] = STATE(507), + [sym__declaration_specifiers] = STATE(508), + [sym_compound_statement] = STATE(509), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(509), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym__statement] = STATE(506), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(955), + [sym__statement] = STATE(507), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(956), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43321,22 +43405,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(343), - [sym__initializer_list_contents] = STATE(344), - [sym_designator] = STATE(345), - [sym__empty_declaration] = STATE(506), + [sym_initializer_list] = STATE(344), + [sym__initializer_list_contents] = STATE(345), + [sym_designator] = STATE(346), + [sym__empty_declaration] = STATE(507), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), - [aux_sym_compound_statement_repeat1] = STATE(511), + [aux_sym_compound_statement_repeat1] = STATE(512), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [aux_sym__initializer_list_contents_repeat1] = STATE(346), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(352), + [aux_sym__initializer_list_contents_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_LBRACK] = ACTIONS(359), [anon_sym_static] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(1179), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), [anon_sym_auto] = ACTIONS(131), @@ -43351,93 +43435,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym_DOT] = ACTIONS(364), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [anon_sym_DOT] = ACTIONS(371), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1203), [sym_comment] = ACTIONS(119), }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(1208), - [anon_sym_POUNDinclude] = ACTIONS(1210), - [anon_sym_POUNDdefine] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(4912), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_POUNDifdef] = ACTIONS(1210), - [anon_sym_POUNDifndef] = ACTIONS(1210), - [anon_sym_POUNDendif] = ACTIONS(1210), - [anon_sym_POUNDelse] = ACTIONS(1210), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4912), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym_auto] = ACTIONS(1210), - [anon_sym_register] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_restrict] = ACTIONS(1210), - [anon_sym_volatile] = ACTIONS(1210), - [sym_function_specifier] = ACTIONS(1210), - [anon_sym_unsigned] = ACTIONS(1210), - [anon_sym_long] = ACTIONS(1210), - [anon_sym_short] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_COLON] = ACTIONS(4918), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_sizeof] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1210), - [sym_char_literal] = ACTIONS(1210), - [sym_string_literal] = ACTIONS(1210), - [sym_identifier] = ACTIONS(4923), + [948] = { + [ts_builtin_sym_end] = ACTIONS(1217), + [anon_sym_POUNDinclude] = ACTIONS(1219), + [anon_sym_POUNDdefine] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(4924), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_POUNDifdef] = ACTIONS(1219), + [anon_sym_POUNDifndef] = ACTIONS(1219), + [anon_sym_POUNDendif] = ACTIONS(1219), + [anon_sym_POUNDelse] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [sym_function_specifier] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_COLON] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1219), + [sym_string_literal] = ACTIONS(1219), + [sym_identifier] = ACTIONS(4935), [sym_comment] = ACTIONS(119), }, - [948] = { - [sym__expression] = STATE(984), + [949] = { + [sym__expression] = STATE(985), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43453,24 +43537,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [949] = { - [sym__expression] = STATE(983), + [950] = { + [sym__expression] = STATE(984), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43486,24 +43570,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [950] = { - [sym__expression] = STATE(982), + [951] = { + [sym__expression] = STATE(983), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43519,24 +43603,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [951] = { - [sym__expression] = STATE(978), + [952] = { + [sym__expression] = STATE(979), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43552,142 +43636,142 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [952] = { - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(4934), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4937), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [sym_identifier] = ACTIONS(190), + [953] = { + [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4949), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_identifier] = ACTIONS(192), [sym_comment] = ACTIONS(119), }, - [953] = { + [954] = { [anon_sym_static] = ACTIONS(165), [anon_sym_typedef] = ACTIONS(165), [anon_sym_extern] = ACTIONS(165), [anon_sym_auto] = ACTIONS(165), [anon_sym_register] = ACTIONS(165), - [anon_sym_const] = ACTIONS(4940), - [anon_sym_restrict] = ACTIONS(4940), - [anon_sym_volatile] = ACTIONS(4940), + [anon_sym_const] = ACTIONS(4952), + [anon_sym_restrict] = ACTIONS(4952), + [anon_sym_volatile] = ACTIONS(4952), [sym_function_specifier] = ACTIONS(165), - [anon_sym_unsigned] = ACTIONS(4940), - [anon_sym_long] = ACTIONS(4940), - [anon_sym_short] = ACTIONS(4940), - [anon_sym_enum] = ACTIONS(4940), - [anon_sym_struct] = ACTIONS(4940), - [anon_sym_union] = ACTIONS(4940), - [sym_identifier] = ACTIONS(4943), + [anon_sym_unsigned] = ACTIONS(4952), + [anon_sym_long] = ACTIONS(4952), + [anon_sym_short] = ACTIONS(4952), + [anon_sym_enum] = ACTIONS(4952), + [anon_sym_struct] = ACTIONS(4952), + [anon_sym_union] = ACTIONS(4952), + [sym_identifier] = ACTIONS(4955), [sym_comment] = ACTIONS(119), }, - [954] = { - [sym__declarator] = STATE(975), + [955] = { + [sym__declarator] = STATE(976), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), [sym_init_declarator] = STATE(32), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_COLON] = ACTIONS(816), - [sym_identifier] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_COLON] = ACTIONS(825), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [955] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(4948), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_STAR_EQ] = ACTIONS(4954), - [anon_sym_SLASH_EQ] = ACTIONS(4954), - [anon_sym_PERCENT_EQ] = ACTIONS(4954), - [anon_sym_PLUS_EQ] = ACTIONS(4954), - [anon_sym_DASH_EQ] = ACTIONS(4954), - [anon_sym_LT_LT_EQ] = ACTIONS(4954), - [anon_sym_GT_GT_EQ] = ACTIONS(4954), - [anon_sym_AMP_EQ] = ACTIONS(4954), - [anon_sym_CARET_EQ] = ACTIONS(4954), - [anon_sym_PIPE_EQ] = ACTIONS(4954), - [anon_sym_AMP] = ACTIONS(4956), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_CARET] = ACTIONS(4956), - [anon_sym_EQ_EQ] = ACTIONS(4960), - [anon_sym_BANG_EQ] = ACTIONS(4960), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_GT] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [956] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_QMARK] = ACTIONS(4964), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_LT_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_GT_EQ] = ACTIONS(4966), + [anon_sym_AMP_EQ] = ACTIONS(4966), + [anon_sym_CARET_EQ] = ACTIONS(4966), + [anon_sym_PIPE_EQ] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(4968), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_CARET] = ACTIONS(4968), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4976), + [anon_sym_GT_EQ] = ACTIONS(4976), + [anon_sym_LT_LT] = ACTIONS(4978), + [anon_sym_GT_GT] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [956] = { - [sym__expression] = STATE(964), + [957] = { + [sym__expression] = STATE(965), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43703,24 +43787,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [957] = { - [sym__expression] = STATE(970), + [958] = { + [sym__expression] = STATE(971), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43736,24 +43820,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [958] = { - [sym__expression] = STATE(971), + [959] = { + [sym__expression] = STATE(972), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43769,24 +43853,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [959] = { - [sym__expression] = STATE(968), + [960] = { + [sym__expression] = STATE(969), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43802,24 +43886,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [960] = { - [sym__expression] = STATE(969), + [961] = { + [sym__expression] = STATE(970), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43835,24 +43919,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [961] = { - [sym__expression] = STATE(967), + [962] = { + [sym__expression] = STATE(968), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43868,24 +43952,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [962] = { - [sym__expression] = STATE(966), + [963] = { + [sym__expression] = STATE(967), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43901,24 +43985,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [963] = { - [sym__expression] = STATE(965), + [964] = { + [sym__expression] = STATE(966), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -43934,358 +44018,358 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [964] = { - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(4974), - [anon_sym_STAR_EQ] = ACTIONS(4977), - [anon_sym_SLASH_EQ] = ACTIONS(4977), - [anon_sym_PERCENT_EQ] = ACTIONS(4977), - [anon_sym_PLUS_EQ] = ACTIONS(4977), - [anon_sym_DASH_EQ] = ACTIONS(4977), - [anon_sym_LT_LT_EQ] = ACTIONS(4977), - [anon_sym_GT_GT_EQ] = ACTIONS(4977), - [anon_sym_AMP_EQ] = ACTIONS(4977), - [anon_sym_CARET_EQ] = ACTIONS(4977), - [anon_sym_PIPE_EQ] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_PIPE_PIPE] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_CARET] = ACTIONS(4980), - [anon_sym_EQ_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4995), - [anon_sym_GT_GT] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_DASH_GT] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [965] = { - [anon_sym_LPAREN] = ACTIONS(3846), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(5004), - [anon_sym_STAR_EQ] = ACTIONS(5007), - [anon_sym_SLASH_EQ] = ACTIONS(5007), - [anon_sym_PERCENT_EQ] = ACTIONS(5007), - [anon_sym_PLUS_EQ] = ACTIONS(5007), - [anon_sym_DASH_EQ] = ACTIONS(5007), - [anon_sym_LT_LT_EQ] = ACTIONS(5007), - [anon_sym_GT_GT_EQ] = ACTIONS(5007), - [anon_sym_AMP_EQ] = ACTIONS(5007), - [anon_sym_CARET_EQ] = ACTIONS(5007), - [anon_sym_PIPE_EQ] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(5010), - [anon_sym_CARET] = ACTIONS(5010), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_LT] = ACTIONS(5025), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(4998), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3885), - [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4989), + [anon_sym_SLASH_EQ] = ACTIONS(4989), + [anon_sym_PERCENT_EQ] = ACTIONS(4989), + [anon_sym_PLUS_EQ] = ACTIONS(4989), + [anon_sym_DASH_EQ] = ACTIONS(4989), + [anon_sym_LT_LT_EQ] = ACTIONS(4989), + [anon_sym_GT_GT_EQ] = ACTIONS(4989), + [anon_sym_AMP_EQ] = ACTIONS(4989), + [anon_sym_CARET_EQ] = ACTIONS(4989), + [anon_sym_PIPE_EQ] = ACTIONS(4989), + [anon_sym_AMP] = ACTIONS(4992), + [anon_sym_PIPE_PIPE] = ACTIONS(4995), + [anon_sym_AMP_AMP] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_LT] = ACTIONS(5007), + [anon_sym_GT_GT] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3420), [sym_comment] = ACTIONS(119), }, [966] = { - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(5028), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(5034), - [anon_sym_STAR_EQ] = ACTIONS(5037), - [anon_sym_SLASH_EQ] = ACTIONS(5037), - [anon_sym_PERCENT_EQ] = ACTIONS(5037), - [anon_sym_PLUS_EQ] = ACTIONS(5037), - [anon_sym_DASH_EQ] = ACTIONS(5037), - [anon_sym_LT_LT_EQ] = ACTIONS(5037), - [anon_sym_GT_GT_EQ] = ACTIONS(5037), - [anon_sym_AMP_EQ] = ACTIONS(5037), - [anon_sym_CARET_EQ] = ACTIONS(5037), - [anon_sym_PIPE_EQ] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_AMP_AMP] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5040), - [anon_sym_CARET] = ACTIONS(5040), - [anon_sym_EQ_EQ] = ACTIONS(5046), - [anon_sym_BANG_EQ] = ACTIONS(5046), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5052), - [anon_sym_GT_EQ] = ACTIONS(5052), - [anon_sym_LT_LT] = ACTIONS(5055), - [anon_sym_GT_GT] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5028), - [anon_sym_PERCENT] = ACTIONS(5028), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3858), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_EQ] = ACTIONS(5013), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5031), + [anon_sym_GT] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5034), + [anon_sym_GT_EQ] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5037), + [anon_sym_GT_GT] = ACTIONS(5037), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_DASH_DASH] = ACTIONS(3894), + [anon_sym_PLUS_PLUS] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3897), + [anon_sym_DASH_GT] = ACTIONS(3897), [sym_comment] = ACTIONS(119), }, [967] = { - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_LBRACK] = ACTIONS(3936), - [anon_sym_EQ] = ACTIONS(5061), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(5064), - [anon_sym_STAR_EQ] = ACTIONS(5067), - [anon_sym_SLASH_EQ] = ACTIONS(5067), - [anon_sym_PERCENT_EQ] = ACTIONS(5067), - [anon_sym_PLUS_EQ] = ACTIONS(5067), - [anon_sym_DASH_EQ] = ACTIONS(5067), - [anon_sym_LT_LT_EQ] = ACTIONS(5067), - [anon_sym_GT_GT_EQ] = ACTIONS(5067), - [anon_sym_AMP_EQ] = ACTIONS(5067), - [anon_sym_CARET_EQ] = ACTIONS(5067), - [anon_sym_PIPE_EQ] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_CARET] = ACTIONS(5070), - [anon_sym_EQ_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5079), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_LT_EQ] = ACTIONS(5082), - [anon_sym_GT_EQ] = ACTIONS(5082), - [anon_sym_LT_LT] = ACTIONS(5085), - [anon_sym_GT_GT] = ACTIONS(5085), - [anon_sym_PLUS] = ACTIONS(5058), - [anon_sym_DASH] = ACTIONS(5058), - [anon_sym_SLASH] = ACTIONS(5058), - [anon_sym_PERCENT] = ACTIONS(5058), - [anon_sym_DASH_DASH] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_STAR_EQ] = ACTIONS(5049), + [anon_sym_SLASH_EQ] = ACTIONS(5049), + [anon_sym_PERCENT_EQ] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5049), + [anon_sym_DASH_EQ] = ACTIONS(5049), + [anon_sym_LT_LT_EQ] = ACTIONS(5049), + [anon_sym_GT_GT_EQ] = ACTIONS(5049), + [anon_sym_AMP_EQ] = ACTIONS(5049), + [anon_sym_CARET_EQ] = ACTIONS(5049), + [anon_sym_PIPE_EQ] = ACTIONS(5049), + [anon_sym_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5055), + [anon_sym_AMP_AMP] = ACTIONS(5055), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5058), + [anon_sym_BANG_EQ] = ACTIONS(5058), + [anon_sym_LT] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5061), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5040), + [anon_sym_DASH] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(3939), + [anon_sym_DASH_GT] = ACTIONS(3939), [sym_comment] = ACTIONS(119), }, [968] = { - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(5088), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(5094), - [anon_sym_STAR_EQ] = ACTIONS(5097), - [anon_sym_SLASH_EQ] = ACTIONS(5097), - [anon_sym_PERCENT_EQ] = ACTIONS(5097), - [anon_sym_PLUS_EQ] = ACTIONS(5097), - [anon_sym_DASH_EQ] = ACTIONS(5097), - [anon_sym_LT_LT_EQ] = ACTIONS(5097), - [anon_sym_GT_GT_EQ] = ACTIONS(5097), - [anon_sym_AMP_EQ] = ACTIONS(5097), - [anon_sym_CARET_EQ] = ACTIONS(5097), - [anon_sym_PIPE_EQ] = ACTIONS(5097), - [anon_sym_AMP] = ACTIONS(5100), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5100), - [anon_sym_CARET] = ACTIONS(5100), - [anon_sym_EQ_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_LT_EQ] = ACTIONS(5112), - [anon_sym_GT_EQ] = ACTIONS(5112), - [anon_sym_LT_LT] = ACTIONS(5115), - [anon_sym_GT_GT] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3450), - [anon_sym_DASH_GT] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_LBRACK] = ACTIONS(3948), + [anon_sym_EQ] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_LT_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_GT_EQ] = ACTIONS(5079), + [anon_sym_AMP_EQ] = ACTIONS(5079), + [anon_sym_CARET_EQ] = ACTIONS(5079), + [anon_sym_PIPE_EQ] = ACTIONS(5079), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_PIPE_PIPE] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5085), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5094), + [anon_sym_GT_EQ] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5097), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_DASH_GT] = ACTIONS(3981), [sym_comment] = ACTIONS(119), }, [969] = { - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(5124), - [anon_sym_STAR_EQ] = ACTIONS(5127), - [anon_sym_SLASH_EQ] = ACTIONS(5127), - [anon_sym_PERCENT_EQ] = ACTIONS(5127), - [anon_sym_PLUS_EQ] = ACTIONS(5127), - [anon_sym_DASH_EQ] = ACTIONS(5127), - [anon_sym_LT_LT_EQ] = ACTIONS(5127), - [anon_sym_GT_GT_EQ] = ACTIONS(5127), - [anon_sym_AMP_EQ] = ACTIONS(5127), - [anon_sym_CARET_EQ] = ACTIONS(5127), - [anon_sym_PIPE_EQ] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5130), - [anon_sym_PIPE_PIPE] = ACTIONS(5133), - [anon_sym_AMP_AMP] = ACTIONS(5133), - [anon_sym_PIPE] = ACTIONS(5130), - [anon_sym_CARET] = ACTIONS(5130), - [anon_sym_EQ_EQ] = ACTIONS(5136), - [anon_sym_BANG_EQ] = ACTIONS(5136), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_LT_EQ] = ACTIONS(5142), - [anon_sym_GT_EQ] = ACTIONS(5142), - [anon_sym_LT_LT] = ACTIONS(5145), - [anon_sym_GT_GT] = ACTIONS(5145), - [anon_sym_PLUS] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5118), - [anon_sym_SLASH] = ACTIONS(5118), - [anon_sym_PERCENT] = ACTIONS(5118), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4041), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_STAR_EQ] = ACTIONS(5109), + [anon_sym_SLASH_EQ] = ACTIONS(5109), + [anon_sym_PERCENT_EQ] = ACTIONS(5109), + [anon_sym_PLUS_EQ] = ACTIONS(5109), + [anon_sym_DASH_EQ] = ACTIONS(5109), + [anon_sym_LT_LT_EQ] = ACTIONS(5109), + [anon_sym_GT_GT_EQ] = ACTIONS(5109), + [anon_sym_AMP_EQ] = ACTIONS(5109), + [anon_sym_CARET_EQ] = ACTIONS(5109), + [anon_sym_PIPE_EQ] = ACTIONS(5109), + [anon_sym_AMP] = ACTIONS(5112), + [anon_sym_PIPE_PIPE] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5115), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5118), + [anon_sym_BANG_EQ] = ACTIONS(5118), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_LT] = ACTIONS(5127), + [anon_sym_GT_GT] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5100), + [anon_sym_PERCENT] = ACTIONS(5100), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3462), + [anon_sym_DASH_GT] = ACTIONS(3462), [sym_comment] = ACTIONS(119), }, [970] = { - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(5148), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(5154), - [anon_sym_STAR_EQ] = ACTIONS(5157), - [anon_sym_SLASH_EQ] = ACTIONS(5157), - [anon_sym_PERCENT_EQ] = ACTIONS(5157), - [anon_sym_PLUS_EQ] = ACTIONS(5157), - [anon_sym_DASH_EQ] = ACTIONS(5157), - [anon_sym_LT_LT_EQ] = ACTIONS(5157), - [anon_sym_GT_GT_EQ] = ACTIONS(5157), - [anon_sym_AMP_EQ] = ACTIONS(5157), - [anon_sym_CARET_EQ] = ACTIONS(5157), - [anon_sym_PIPE_EQ] = ACTIONS(5157), - [anon_sym_AMP] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5166), - [anon_sym_BANG_EQ] = ACTIONS(5166), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_LT_EQ] = ACTIONS(5172), - [anon_sym_GT_EQ] = ACTIONS(5172), - [anon_sym_LT_LT] = ACTIONS(5175), - [anon_sym_GT_GT] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5148), - [anon_sym_DASH] = ACTIONS(5148), - [anon_sym_SLASH] = ACTIONS(5148), - [anon_sym_PERCENT] = ACTIONS(5148), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_DASH_GT] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(5136), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_LT_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_GT_EQ] = ACTIONS(5139), + [anon_sym_AMP_EQ] = ACTIONS(5139), + [anon_sym_CARET_EQ] = ACTIONS(5139), + [anon_sym_PIPE_EQ] = ACTIONS(5139), + [anon_sym_AMP] = ACTIONS(5142), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5148), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5157), + [anon_sym_GT_GT] = ACTIONS(5157), + [anon_sym_PLUS] = ACTIONS(5130), + [anon_sym_DASH] = ACTIONS(5130), + [anon_sym_SLASH] = ACTIONS(5130), + [anon_sym_PERCENT] = ACTIONS(5130), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4053), + [anon_sym_DASH_GT] = ACTIONS(4053), [sym_comment] = ACTIONS(119), }, [971] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(5178), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(3471), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(5166), + [anon_sym_STAR_EQ] = ACTIONS(5169), + [anon_sym_SLASH_EQ] = ACTIONS(5169), + [anon_sym_PERCENT_EQ] = ACTIONS(5169), + [anon_sym_PLUS_EQ] = ACTIONS(5169), + [anon_sym_DASH_EQ] = ACTIONS(5169), + [anon_sym_LT_LT_EQ] = ACTIONS(5169), + [anon_sym_GT_GT_EQ] = ACTIONS(5169), + [anon_sym_AMP_EQ] = ACTIONS(5169), + [anon_sym_CARET_EQ] = ACTIONS(5169), + [anon_sym_PIPE_EQ] = ACTIONS(5169), + [anon_sym_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5175), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_CARET] = ACTIONS(5172), + [anon_sym_EQ_EQ] = ACTIONS(5178), + [anon_sym_BANG_EQ] = ACTIONS(5178), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5187), + [anon_sym_GT_GT] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_SLASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5160), + [anon_sym_DASH_DASH] = ACTIONS(3501), + [anon_sym_PLUS_PLUS] = ACTIONS(3501), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_DASH_GT] = ACTIONS(3504), [sym_comment] = ACTIONS(119), }, [972] = { - [sym__expression] = STATE(973), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(5190), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [973] = { + [sym__expression] = STATE(974), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -44301,168 +44385,168 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [973] = { - [anon_sym_LPAREN] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_STAR_EQ] = ACTIONS(5189), - [anon_sym_SLASH_EQ] = ACTIONS(5189), - [anon_sym_PERCENT_EQ] = ACTIONS(5189), - [anon_sym_PLUS_EQ] = ACTIONS(5189), - [anon_sym_DASH_EQ] = ACTIONS(5189), - [anon_sym_LT_LT_EQ] = ACTIONS(5189), - [anon_sym_GT_GT_EQ] = ACTIONS(5189), - [anon_sym_AMP_EQ] = ACTIONS(5189), - [anon_sym_CARET_EQ] = ACTIONS(5189), - [anon_sym_PIPE_EQ] = ACTIONS(5189), - [anon_sym_AMP] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE] = ACTIONS(5192), - [anon_sym_CARET] = ACTIONS(5192), - [anon_sym_EQ_EQ] = ACTIONS(5198), - [anon_sym_BANG_EQ] = ACTIONS(5198), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_LT_EQ] = ACTIONS(5204), - [anon_sym_GT_EQ] = ACTIONS(5204), - [anon_sym_LT_LT] = ACTIONS(5207), - [anon_sym_GT_GT] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5180), - [anon_sym_DASH] = ACTIONS(5180), - [anon_sym_SLASH] = ACTIONS(5180), - [anon_sym_PERCENT] = ACTIONS(5180), - [anon_sym_DASH_DASH] = ACTIONS(3773), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3776), - [anon_sym_DASH_GT] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [974] = { - [anon_sym_LPAREN] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_STAR] = ACTIONS(250), - [anon_sym_static] = ACTIONS(252), - [anon_sym_LBRACE] = ACTIONS(250), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_typedef] = ACTIONS(252), - [anon_sym_extern] = ACTIONS(252), - [anon_sym_auto] = ACTIONS(252), - [anon_sym_register] = ACTIONS(252), - [anon_sym_const] = ACTIONS(5213), - [anon_sym_restrict] = ACTIONS(5213), - [anon_sym_volatile] = ACTIONS(5213), - [sym_function_specifier] = ACTIONS(252), - [anon_sym_unsigned] = ACTIONS(5213), - [anon_sym_long] = ACTIONS(5213), - [anon_sym_short] = ACTIONS(5213), - [anon_sym_enum] = ACTIONS(5213), - [anon_sym_struct] = ACTIONS(5213), - [anon_sym_union] = ACTIONS(5213), - [anon_sym_if] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(252), - [anon_sym_case] = ACTIONS(252), - [anon_sym_default] = ACTIONS(252), - [anon_sym_while] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_for] = ACTIONS(252), - [anon_sym_return] = ACTIONS(252), - [anon_sym_break] = ACTIONS(252), - [anon_sym_continue] = ACTIONS(252), - [anon_sym_goto] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(250), - [anon_sym_PLUS_PLUS] = ACTIONS(250), - [anon_sym_sizeof] = ACTIONS(252), - [sym_number_literal] = ACTIONS(252), - [sym_char_literal] = ACTIONS(252), - [sym_string_literal] = ACTIONS(252), - [sym_identifier] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(5198), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_LT_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_GT_EQ] = ACTIONS(5201), + [anon_sym_AMP_EQ] = ACTIONS(5201), + [anon_sym_CARET_EQ] = ACTIONS(5201), + [anon_sym_PIPE_EQ] = ACTIONS(5201), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_PIPE_PIPE] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5207), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_LT_EQ] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5219), + [anon_sym_GT_GT] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5192), + [anon_sym_PERCENT] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(3785), + [anon_sym_PLUS_PLUS] = ACTIONS(3785), + [anon_sym_DOT] = ACTIONS(3788), + [anon_sym_DASH_GT] = ACTIONS(3788), [sym_comment] = ACTIONS(119), }, [975] = { - [aux_sym_declaration_repeat1] = STATE(35), - [aux_sym_struct_declaration_repeat1] = STATE(433), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_SEMI] = ACTIONS(5221), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_COLON] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_static] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_typedef] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_auto] = ACTIONS(259), + [anon_sym_register] = ACTIONS(259), + [anon_sym_const] = ACTIONS(5225), + [anon_sym_restrict] = ACTIONS(5225), + [anon_sym_volatile] = ACTIONS(5225), + [sym_function_specifier] = ACTIONS(259), + [anon_sym_unsigned] = ACTIONS(5225), + [anon_sym_long] = ACTIONS(5225), + [anon_sym_short] = ACTIONS(5225), + [anon_sym_enum] = ACTIONS(5225), + [anon_sym_struct] = ACTIONS(5225), + [anon_sym_union] = ACTIONS(5225), + [anon_sym_if] = ACTIONS(259), + [anon_sym_switch] = ACTIONS(259), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(259), + [anon_sym_do] = ACTIONS(259), + [anon_sym_for] = ACTIONS(259), + [anon_sym_return] = ACTIONS(259), + [anon_sym_break] = ACTIONS(259), + [anon_sym_continue] = ACTIONS(259), + [anon_sym_goto] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_sizeof] = ACTIONS(259), + [sym_number_literal] = ACTIONS(259), + [sym_char_literal] = ACTIONS(259), + [sym_string_literal] = ACTIONS(259), + [sym_identifier] = ACTIONS(5228), [sym_comment] = ACTIONS(119), }, [976] = { - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_static] = ACTIONS(274), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_RBRACE] = ACTIONS(5223), - [anon_sym_typedef] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_auto] = ACTIONS(274), - [anon_sym_register] = ACTIONS(274), - [anon_sym_const] = ACTIONS(5226), - [anon_sym_restrict] = ACTIONS(5226), - [anon_sym_volatile] = ACTIONS(5226), - [sym_function_specifier] = ACTIONS(274), - [anon_sym_unsigned] = ACTIONS(5226), - [anon_sym_long] = ACTIONS(5226), - [anon_sym_short] = ACTIONS(5226), - [anon_sym_enum] = ACTIONS(5226), - [anon_sym_struct] = ACTIONS(5226), - [anon_sym_union] = ACTIONS(5226), - [anon_sym_if] = ACTIONS(274), - [anon_sym_switch] = ACTIONS(274), - [anon_sym_case] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [anon_sym_do] = ACTIONS(274), - [anon_sym_for] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_goto] = ACTIONS(274), - [anon_sym_AMP] = ACTIONS(272), - [anon_sym_BANG] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_DASH] = ACTIONS(274), - [anon_sym_DASH_DASH] = ACTIONS(272), - [anon_sym_PLUS_PLUS] = ACTIONS(272), - [anon_sym_sizeof] = ACTIONS(274), - [sym_number_literal] = ACTIONS(274), - [sym_char_literal] = ACTIONS(274), - [sym_string_literal] = ACTIONS(274), - [sym_identifier] = ACTIONS(5229), + [aux_sym_declaration_repeat1] = STATE(35), + [aux_sym_struct_declaration_repeat1] = STATE(434), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_SEMI] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_COLON] = ACTIONS(847), + [sym_comment] = ACTIONS(119), + }, + [977] = { + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_static] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_typedef] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_auto] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_const] = ACTIONS(5238), + [anon_sym_restrict] = ACTIONS(5238), + [anon_sym_volatile] = ACTIONS(5238), + [sym_function_specifier] = ACTIONS(281), + [anon_sym_unsigned] = ACTIONS(5238), + [anon_sym_long] = ACTIONS(5238), + [anon_sym_short] = ACTIONS(5238), + [anon_sym_enum] = ACTIONS(5238), + [anon_sym_struct] = ACTIONS(5238), + [anon_sym_union] = ACTIONS(5238), + [anon_sym_if] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(281), + [anon_sym_case] = ACTIONS(281), + [anon_sym_default] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_goto] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DASH_DASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(279), + [anon_sym_sizeof] = ACTIONS(281), + [sym_number_literal] = ACTIONS(281), + [sym_char_literal] = ACTIONS(281), + [sym_string_literal] = ACTIONS(281), + [sym_identifier] = ACTIONS(5241), [sym_comment] = ACTIONS(119), }, - [977] = { + [978] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -44485,12 +44569,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(979), + [sym_type_name] = STATE(980), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -44500,68 +44584,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [978] = { - [anon_sym_LPAREN] = ACTIONS(4115), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(5238), - [anon_sym_STAR_EQ] = ACTIONS(5241), - [anon_sym_SLASH_EQ] = ACTIONS(5241), - [anon_sym_PERCENT_EQ] = ACTIONS(5241), - [anon_sym_PLUS_EQ] = ACTIONS(5241), - [anon_sym_DASH_EQ] = ACTIONS(5241), - [anon_sym_LT_LT_EQ] = ACTIONS(5241), - [anon_sym_GT_GT_EQ] = ACTIONS(5241), - [anon_sym_AMP_EQ] = ACTIONS(5241), - [anon_sym_CARET_EQ] = ACTIONS(5241), - [anon_sym_PIPE_EQ] = ACTIONS(5241), - [anon_sym_AMP] = ACTIONS(5244), - [anon_sym_PIPE_PIPE] = ACTIONS(5247), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5244), - [anon_sym_CARET] = ACTIONS(5244), - [anon_sym_EQ_EQ] = ACTIONS(5250), - [anon_sym_BANG_EQ] = ACTIONS(5250), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5256), - [anon_sym_GT_EQ] = ACTIONS(5256), - [anon_sym_LT_LT] = ACTIONS(5259), - [anon_sym_GT_GT] = ACTIONS(5259), - [anon_sym_PLUS] = ACTIONS(5232), - [anon_sym_DASH] = ACTIONS(5232), - [anon_sym_SLASH] = ACTIONS(5232), - [anon_sym_PERCENT] = ACTIONS(5232), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4154), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [979] = { - [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_LPAREN] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(4133), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(5250), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_PIPE_PIPE] = ACTIONS(5259), + [anon_sym_AMP_AMP] = ACTIONS(5259), + [anon_sym_PIPE] = ACTIONS(5256), + [anon_sym_CARET] = ACTIONS(5256), + [anon_sym_EQ_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_LT_EQ] = ACTIONS(5268), + [anon_sym_GT_EQ] = ACTIONS(5268), + [anon_sym_LT_LT] = ACTIONS(5271), + [anon_sym_GT_GT] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_SLASH] = ACTIONS(5244), + [anon_sym_PERCENT] = ACTIONS(5244), + [anon_sym_DASH_DASH] = ACTIONS(4163), + [anon_sym_PLUS_PLUS] = ACTIONS(4163), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), [sym_comment] = ACTIONS(119), }, [980] = { - [sym__expression] = STATE(981), + [anon_sym_RPAREN] = ACTIONS(5274), + [sym_comment] = ACTIONS(119), + }, + [981] = { + [sym__expression] = STATE(982), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -44577,272 +44661,272 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(5267), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(5270), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(5272), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(5275), - [anon_sym_PLUS_PLUS] = ACTIONS(5275), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [981] = { - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(5284), - [anon_sym_STAR_EQ] = ACTIONS(5287), - [anon_sym_SLASH_EQ] = ACTIONS(5287), - [anon_sym_PERCENT_EQ] = ACTIONS(5287), - [anon_sym_PLUS_EQ] = ACTIONS(5287), - [anon_sym_DASH_EQ] = ACTIONS(5287), - [anon_sym_LT_LT_EQ] = ACTIONS(5287), - [anon_sym_GT_GT_EQ] = ACTIONS(5287), - [anon_sym_AMP_EQ] = ACTIONS(5287), - [anon_sym_CARET_EQ] = ACTIONS(5287), - [anon_sym_PIPE_EQ] = ACTIONS(5287), - [anon_sym_AMP] = ACTIONS(5290), - [anon_sym_PIPE_PIPE] = ACTIONS(5293), - [anon_sym_AMP_AMP] = ACTIONS(5293), - [anon_sym_PIPE] = ACTIONS(5290), - [anon_sym_CARET] = ACTIONS(5290), - [anon_sym_EQ_EQ] = ACTIONS(5296), - [anon_sym_BANG_EQ] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_LT_EQ] = ACTIONS(5302), - [anon_sym_GT_EQ] = ACTIONS(5302), - [anon_sym_LT_LT] = ACTIONS(5305), - [anon_sym_GT_GT] = ACTIONS(5305), - [anon_sym_PLUS] = ACTIONS(5278), - [anon_sym_DASH] = ACTIONS(5278), - [anon_sym_SLASH] = ACTIONS(5278), - [anon_sym_PERCENT] = ACTIONS(5278), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3366), - [anon_sym_DASH_GT] = ACTIONS(3366), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [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(5279), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(5287), + [anon_sym_PLUS_PLUS] = ACTIONS(5287), + [anon_sym_sizeof] = ACTIONS(2330), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [982] = { - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(5311), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(5314), - [anon_sym_STAR_EQ] = ACTIONS(5317), - [anon_sym_SLASH_EQ] = ACTIONS(5317), - [anon_sym_PERCENT_EQ] = ACTIONS(5317), - [anon_sym_PLUS_EQ] = ACTIONS(5317), - [anon_sym_DASH_EQ] = ACTIONS(5317), - [anon_sym_LT_LT_EQ] = ACTIONS(5317), - [anon_sym_GT_GT_EQ] = ACTIONS(5317), - [anon_sym_AMP_EQ] = ACTIONS(5317), - [anon_sym_CARET_EQ] = ACTIONS(5317), - [anon_sym_PIPE_EQ] = ACTIONS(5317), - [anon_sym_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5323), - [anon_sym_AMP_AMP] = ACTIONS(5323), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_CARET] = ACTIONS(5320), - [anon_sym_EQ_EQ] = ACTIONS(5326), - [anon_sym_BANG_EQ] = ACTIONS(5326), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_LT_EQ] = ACTIONS(5332), - [anon_sym_GT_EQ] = ACTIONS(5332), - [anon_sym_LT_LT] = ACTIONS(5335), - [anon_sym_GT_GT] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5308), - [anon_sym_DASH] = ACTIONS(5308), - [anon_sym_SLASH] = ACTIONS(5308), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_DASH_DASH] = ACTIONS(3531), - [anon_sym_PLUS_PLUS] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_DASH_GT] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_EQ] = ACTIONS(5293), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_STAR_EQ] = ACTIONS(5299), + [anon_sym_SLASH_EQ] = ACTIONS(5299), + [anon_sym_PERCENT_EQ] = ACTIONS(5299), + [anon_sym_PLUS_EQ] = ACTIONS(5299), + [anon_sym_DASH_EQ] = ACTIONS(5299), + [anon_sym_LT_LT_EQ] = ACTIONS(5299), + [anon_sym_GT_GT_EQ] = ACTIONS(5299), + [anon_sym_AMP_EQ] = ACTIONS(5299), + [anon_sym_CARET_EQ] = ACTIONS(5299), + [anon_sym_PIPE_EQ] = ACTIONS(5299), + [anon_sym_AMP] = ACTIONS(5302), + [anon_sym_PIPE_PIPE] = ACTIONS(5305), + [anon_sym_AMP_AMP] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5302), + [anon_sym_EQ_EQ] = ACTIONS(5308), + [anon_sym_BANG_EQ] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(5311), + [anon_sym_GT] = ACTIONS(5311), + [anon_sym_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_EQ] = ACTIONS(5314), + [anon_sym_LT_LT] = ACTIONS(5317), + [anon_sym_GT_GT] = ACTIONS(5317), + [anon_sym_PLUS] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_SLASH] = ACTIONS(5290), + [anon_sym_PERCENT] = ACTIONS(5290), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_DASH_GT] = ACTIONS(3378), [sym_comment] = ACTIONS(119), }, [983] = { - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_COMMA] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(5338), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_EQ] = ACTIONS(5341), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_QMARK] = ACTIONS(5344), - [anon_sym_STAR_EQ] = ACTIONS(5347), - [anon_sym_SLASH_EQ] = ACTIONS(5347), - [anon_sym_PERCENT_EQ] = ACTIONS(5347), - [anon_sym_PLUS_EQ] = ACTIONS(5347), - [anon_sym_DASH_EQ] = ACTIONS(5347), - [anon_sym_LT_LT_EQ] = ACTIONS(5347), - [anon_sym_GT_GT_EQ] = ACTIONS(5347), - [anon_sym_AMP_EQ] = ACTIONS(5347), - [anon_sym_CARET_EQ] = ACTIONS(5347), - [anon_sym_PIPE_EQ] = ACTIONS(5347), - [anon_sym_AMP] = ACTIONS(5350), - [anon_sym_PIPE_PIPE] = ACTIONS(5353), - [anon_sym_AMP_AMP] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5350), - [anon_sym_CARET] = ACTIONS(5350), - [anon_sym_EQ_EQ] = ACTIONS(5356), - [anon_sym_BANG_EQ] = ACTIONS(5356), - [anon_sym_LT] = ACTIONS(5359), - [anon_sym_GT] = ACTIONS(5359), - [anon_sym_LT_EQ] = ACTIONS(5362), - [anon_sym_GT_EQ] = ACTIONS(5362), - [anon_sym_LT_LT] = ACTIONS(5365), - [anon_sym_GT_GT] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5338), - [anon_sym_DASH] = ACTIONS(5338), - [anon_sym_SLASH] = ACTIONS(5338), - [anon_sym_PERCENT] = ACTIONS(5338), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_PLUS_PLUS] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4272), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(5323), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_STAR_EQ] = ACTIONS(5329), + [anon_sym_SLASH_EQ] = ACTIONS(5329), + [anon_sym_PERCENT_EQ] = ACTIONS(5329), + [anon_sym_PLUS_EQ] = ACTIONS(5329), + [anon_sym_DASH_EQ] = ACTIONS(5329), + [anon_sym_LT_LT_EQ] = ACTIONS(5329), + [anon_sym_GT_GT_EQ] = ACTIONS(5329), + [anon_sym_AMP_EQ] = ACTIONS(5329), + [anon_sym_CARET_EQ] = ACTIONS(5329), + [anon_sym_PIPE_EQ] = ACTIONS(5329), + [anon_sym_AMP] = ACTIONS(5332), + [anon_sym_PIPE_PIPE] = ACTIONS(5335), + [anon_sym_AMP_AMP] = ACTIONS(5335), + [anon_sym_PIPE] = ACTIONS(5332), + [anon_sym_CARET] = ACTIONS(5332), + [anon_sym_EQ_EQ] = ACTIONS(5338), + [anon_sym_BANG_EQ] = ACTIONS(5338), + [anon_sym_LT] = ACTIONS(5341), + [anon_sym_GT] = ACTIONS(5341), + [anon_sym_LT_EQ] = ACTIONS(5344), + [anon_sym_GT_EQ] = ACTIONS(5344), + [anon_sym_LT_LT] = ACTIONS(5347), + [anon_sym_GT_GT] = ACTIONS(5347), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_PERCENT] = ACTIONS(5320), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_DOT] = ACTIONS(3546), + [anon_sym_DASH_GT] = ACTIONS(3546), [sym_comment] = ACTIONS(119), }, [984] = { - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(5368), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(5371), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(5374), - [anon_sym_STAR_EQ] = ACTIONS(5377), - [anon_sym_SLASH_EQ] = ACTIONS(5377), - [anon_sym_PERCENT_EQ] = ACTIONS(5377), - [anon_sym_PLUS_EQ] = ACTIONS(5377), - [anon_sym_DASH_EQ] = ACTIONS(5377), - [anon_sym_LT_LT_EQ] = ACTIONS(5377), - [anon_sym_GT_GT_EQ] = ACTIONS(5377), - [anon_sym_AMP_EQ] = ACTIONS(5377), - [anon_sym_CARET_EQ] = ACTIONS(5377), - [anon_sym_PIPE_EQ] = ACTIONS(5377), - [anon_sym_AMP] = ACTIONS(5380), - [anon_sym_PIPE_PIPE] = ACTIONS(5383), - [anon_sym_AMP_AMP] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5380), - [anon_sym_CARET] = ACTIONS(5380), - [anon_sym_EQ_EQ] = ACTIONS(5386), - [anon_sym_BANG_EQ] = ACTIONS(5386), - [anon_sym_LT] = ACTIONS(5389), - [anon_sym_GT] = ACTIONS(5389), - [anon_sym_LT_EQ] = ACTIONS(5392), - [anon_sym_GT_EQ] = ACTIONS(5392), - [anon_sym_LT_LT] = ACTIONS(5395), - [anon_sym_GT_GT] = ACTIONS(5395), - [anon_sym_PLUS] = ACTIONS(5368), - [anon_sym_DASH] = ACTIONS(5368), - [anon_sym_SLASH] = ACTIONS(5368), - [anon_sym_PERCENT] = ACTIONS(5368), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(5353), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_STAR_EQ] = ACTIONS(5359), + [anon_sym_SLASH_EQ] = ACTIONS(5359), + [anon_sym_PERCENT_EQ] = ACTIONS(5359), + [anon_sym_PLUS_EQ] = ACTIONS(5359), + [anon_sym_DASH_EQ] = ACTIONS(5359), + [anon_sym_LT_LT_EQ] = ACTIONS(5359), + [anon_sym_GT_GT_EQ] = ACTIONS(5359), + [anon_sym_AMP_EQ] = ACTIONS(5359), + [anon_sym_CARET_EQ] = ACTIONS(5359), + [anon_sym_PIPE_EQ] = ACTIONS(5359), + [anon_sym_AMP] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(5365), + [anon_sym_AMP_AMP] = ACTIONS(5365), + [anon_sym_PIPE] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5368), + [anon_sym_BANG_EQ] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(5371), + [anon_sym_GT] = ACTIONS(5371), + [anon_sym_LT_EQ] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5377), + [anon_sym_GT_GT] = ACTIONS(5377), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_PERCENT] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4284), [sym_comment] = ACTIONS(119), }, [985] = { - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(5401), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(5404), - [anon_sym_STAR_EQ] = ACTIONS(5407), - [anon_sym_SLASH_EQ] = ACTIONS(5407), - [anon_sym_PERCENT_EQ] = ACTIONS(5407), - [anon_sym_PLUS_EQ] = ACTIONS(5407), - [anon_sym_DASH_EQ] = ACTIONS(5407), - [anon_sym_LT_LT_EQ] = ACTIONS(5407), - [anon_sym_GT_GT_EQ] = ACTIONS(5407), - [anon_sym_AMP_EQ] = ACTIONS(5407), - [anon_sym_CARET_EQ] = ACTIONS(5407), - [anon_sym_PIPE_EQ] = ACTIONS(5407), - [anon_sym_AMP] = ACTIONS(5410), - [anon_sym_PIPE_PIPE] = ACTIONS(5413), - [anon_sym_AMP_AMP] = ACTIONS(5413), - [anon_sym_PIPE] = ACTIONS(5410), - [anon_sym_CARET] = ACTIONS(5410), - [anon_sym_EQ_EQ] = ACTIONS(5416), - [anon_sym_BANG_EQ] = ACTIONS(5416), - [anon_sym_LT] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5422), - [anon_sym_GT_EQ] = ACTIONS(5422), - [anon_sym_LT_LT] = ACTIONS(5425), - [anon_sym_GT_GT] = ACTIONS(5425), - [anon_sym_PLUS] = ACTIONS(5398), - [anon_sym_DASH] = ACTIONS(5398), - [anon_sym_SLASH] = ACTIONS(5398), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_DASH_GT] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(4287), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_EQ] = ACTIONS(5383), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_STAR_EQ] = ACTIONS(5389), + [anon_sym_SLASH_EQ] = ACTIONS(5389), + [anon_sym_PERCENT_EQ] = ACTIONS(5389), + [anon_sym_PLUS_EQ] = ACTIONS(5389), + [anon_sym_DASH_EQ] = ACTIONS(5389), + [anon_sym_LT_LT_EQ] = ACTIONS(5389), + [anon_sym_GT_GT_EQ] = ACTIONS(5389), + [anon_sym_AMP_EQ] = ACTIONS(5389), + [anon_sym_CARET_EQ] = ACTIONS(5389), + [anon_sym_PIPE_EQ] = ACTIONS(5389), + [anon_sym_AMP] = ACTIONS(5392), + [anon_sym_PIPE_PIPE] = ACTIONS(5395), + [anon_sym_AMP_AMP] = ACTIONS(5395), + [anon_sym_PIPE] = ACTIONS(5392), + [anon_sym_CARET] = ACTIONS(5392), + [anon_sym_EQ_EQ] = ACTIONS(5398), + [anon_sym_BANG_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5401), + [anon_sym_GT] = ACTIONS(5401), + [anon_sym_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_LT] = ACTIONS(5407), + [anon_sym_GT_GT] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(5380), + [anon_sym_DASH] = ACTIONS(5380), + [anon_sym_SLASH] = ACTIONS(5380), + [anon_sym_PERCENT] = ACTIONS(5380), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4326), [sym_comment] = ACTIONS(119), }, [986] = { - [anon_sym_RPAREN] = ACTIONS(5428), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(5410), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(5413), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(5416), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_PIPE_PIPE] = ACTIONS(5425), + [anon_sym_AMP_AMP] = ACTIONS(5425), + [anon_sym_PIPE] = ACTIONS(5422), + [anon_sym_CARET] = ACTIONS(5422), + [anon_sym_EQ_EQ] = ACTIONS(5428), + [anon_sym_BANG_EQ] = ACTIONS(5428), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5434), + [anon_sym_LT_LT] = ACTIONS(5437), + [anon_sym_GT_GT] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5410), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_SLASH] = ACTIONS(5410), + [anon_sym_PERCENT] = ACTIONS(5410), + [anon_sym_DASH_DASH] = ACTIONS(3585), + [anon_sym_PLUS_PLUS] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3588), [sym_comment] = ACTIONS(119), }, [987] = { - [sym__expression] = STATE(981), + [anon_sym_RPAREN] = ACTIONS(5440), + [sym_comment] = ACTIONS(119), + }, + [988] = { + [sym__expression] = STATE(982), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -44858,89 +44942,89 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2321), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [988] = { - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(5430), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(5436), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(5439), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_STAR_EQ] = ACTIONS(3468), - [anon_sym_SLASH_EQ] = ACTIONS(3468), - [anon_sym_PERCENT_EQ] = ACTIONS(3468), - [anon_sym_PLUS_EQ] = ACTIONS(3468), - [anon_sym_DASH_EQ] = ACTIONS(3468), - [anon_sym_LT_LT_EQ] = ACTIONS(3468), - [anon_sym_GT_GT_EQ] = ACTIONS(3468), - [anon_sym_AMP_EQ] = ACTIONS(3468), - [anon_sym_CARET_EQ] = ACTIONS(3468), - [anon_sym_PIPE_EQ] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_PIPE_PIPE] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_PIPE] = ACTIONS(3471), - [anon_sym_CARET] = ACTIONS(3471), - [anon_sym_EQ_EQ] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3480), - [anon_sym_GT] = ACTIONS(3480), - [anon_sym_LT_EQ] = ACTIONS(3483), - [anon_sym_GT_EQ] = ACTIONS(3483), - [anon_sym_LT_LT] = ACTIONS(3486), - [anon_sym_GT_GT] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_SLASH] = ACTIONS(3456), - [anon_sym_PERCENT] = ACTIONS(3456), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_DASH_GT] = ACTIONS(3492), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_TILDE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_sizeof] = ACTIONS(2330), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [989] = { - [anon_sym_COMMA] = ACTIONS(5444), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_COMMA] = ACTIONS(5442), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(5448), + [anon_sym_STAR] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3471), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(5451), + [anon_sym_COLON] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(3477), + [anon_sym_STAR_EQ] = ACTIONS(3480), + [anon_sym_SLASH_EQ] = ACTIONS(3480), + [anon_sym_PERCENT_EQ] = ACTIONS(3480), + [anon_sym_PLUS_EQ] = ACTIONS(3480), + [anon_sym_DASH_EQ] = ACTIONS(3480), + [anon_sym_LT_LT_EQ] = ACTIONS(3480), + [anon_sym_GT_GT_EQ] = ACTIONS(3480), + [anon_sym_AMP_EQ] = ACTIONS(3480), + [anon_sym_CARET_EQ] = ACTIONS(3480), + [anon_sym_PIPE_EQ] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3486), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_CARET] = ACTIONS(3483), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_GT] = ACTIONS(3492), + [anon_sym_LT_EQ] = ACTIONS(3495), + [anon_sym_GT_EQ] = ACTIONS(3495), + [anon_sym_LT_LT] = ACTIONS(3498), + [anon_sym_GT_GT] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_PERCENT] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3501), + [anon_sym_PLUS_PLUS] = ACTIONS(3501), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_DASH_GT] = ACTIONS(3504), [sym_comment] = ACTIONS(119), }, [990] = { - [anon_sym_LPAREN] = ACTIONS(5448), - [anon_sym_COMMA] = ACTIONS(5448), - [anon_sym_RPAREN] = ACTIONS(5448), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(5448), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_COLON] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(3227), [sym_comment] = ACTIONS(119), }, [991] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(827), + [anon_sym_LPAREN] = ACTIONS(5460), + [anon_sym_COMMA] = ACTIONS(5460), + [anon_sym_RPAREN] = ACTIONS(5460), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(5460), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_COLON] = ACTIONS(763), + [sym_comment] = ACTIONS(119), + }, + [992] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(828), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -44956,40 +45040,40 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(5464), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [992] = { - [anon_sym_LPAREN] = ACTIONS(5454), - [anon_sym_COMMA] = ACTIONS(5454), - [anon_sym_RPAREN] = ACTIONS(5454), - [anon_sym_SEMI] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(5454), - [anon_sym_EQ] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(758), - [anon_sym_COLON] = ACTIONS(758), + [993] = { + [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_COMMA] = ACTIONS(5466), + [anon_sym_RPAREN] = ACTIONS(5466), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(5466), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_COLON] = ACTIONS(767), [sym_comment] = ACTIONS(119), }, - [993] = { + [994] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(997), + [sym__expression] = STATE(998), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45005,81 +45089,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [aux_sym_array_declarator_repeat1] = STATE(991), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(2251), + [aux_sym_array_declarator_repeat1] = STATE(992), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(2260), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [994] = { - [anon_sym_LPAREN] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_SEMI] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_COLON] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [995] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(5462), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(759), [sym_comment] = ACTIONS(119), }, [996] = { - [sym_type_qualifier] = STATE(204), - [sym__expression] = STATE(997), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(5474), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [997] = { + [sym_type_qualifier] = STATE(205), + [sym__expression] = STATE(998), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45095,122 +45179,122 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(296), - [anon_sym_static] = ACTIONS(3199), - [anon_sym_RBRACK] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_RBRACK] = ACTIONS(2260), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(296), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_sizeof] = ACTIONS(310), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [997] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_RBRACK] = ACTIONS(5452), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(313), + [anon_sym_DASH_DASH] = ACTIONS(315), + [anon_sym_PLUS_PLUS] = ACTIONS(315), + [anon_sym_sizeof] = ACTIONS(317), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [998] = { - [anon_sym_LPAREN] = ACTIONS(5464), - [anon_sym_COMMA] = ACTIONS(5464), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_SEMI] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(5472), - [anon_sym_RBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(5478), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(5469), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(548), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(2300), - [anon_sym_DASH_GT] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(5464), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [999] = { - [sym__declarator] = STATE(262), - [sym__abstract_declarator] = STATE(263), + [anon_sym_LPAREN] = ACTIONS(5476), + [anon_sym_COMMA] = ACTIONS(5476), + [anon_sym_RPAREN] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5481), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(5490), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5481), + [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(2309), + [anon_sym_DASH_GT] = ACTIONS(555), + [sym_comment] = ACTIONS(119), + }, + [1000] = { + [sym__declarator] = STATE(263), + [sym__abstract_declarator] = STATE(264), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), + [sym_abstract_array_declarator] = STATE(211), [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -45233,13 +45317,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(840), + [sym_type_name] = STATE(841), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(638), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(645), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -45249,30 +45333,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5486), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5498), [sym_comment] = ACTIONS(119), }, - [1000] = { - [sym__declarator] = STATE(911), - [sym__abstract_declarator] = STATE(260), + [1001] = { + [sym__declarator] = STATE(912), + [sym__abstract_declarator] = STATE(261), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym__expression] = STATE(839), + [sym_abstract_array_declarator] = STATE(211), + [sym__expression] = STATE(840), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45288,125 +45372,125 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2243), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(2245), - [sym_comment] = ACTIONS(119), - }, - [1001] = { - [anon_sym_LPAREN] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_RPAREN] = ACTIONS(5488), - [anon_sym_SEMI] = ACTIONS(5488), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(5491), - [anon_sym_LBRACE] = ACTIONS(256), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(5488), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_sizeof] = ACTIONS(2252), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(2254), [sym_comment] = ACTIONS(119), }, [1002] = { - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5501), - [anon_sym_LBRACK] = ACTIONS(5505), - [anon_sym_RBRACK] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5509), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_COLON] = ACTIONS(5498), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5517), - [anon_sym_SLASH_EQ] = ACTIONS(5517), - [anon_sym_PERCENT_EQ] = ACTIONS(5517), - [anon_sym_PLUS_EQ] = ACTIONS(5517), - [anon_sym_DASH_EQ] = ACTIONS(5517), - [anon_sym_LT_LT_EQ] = ACTIONS(5517), - [anon_sym_GT_GT_EQ] = ACTIONS(5517), - [anon_sym_AMP_EQ] = ACTIONS(5517), - [anon_sym_CARET_EQ] = ACTIONS(5517), - [anon_sym_PIPE_EQ] = ACTIONS(5517), - [anon_sym_AMP] = ACTIONS(5521), - [anon_sym_PIPE_PIPE] = ACTIONS(5525), - [anon_sym_AMP_AMP] = ACTIONS(5525), - [anon_sym_PIPE] = ACTIONS(5521), - [anon_sym_CARET] = ACTIONS(5521), - [anon_sym_EQ_EQ] = ACTIONS(5529), - [anon_sym_BANG_EQ] = ACTIONS(5529), - [anon_sym_LT] = ACTIONS(5533), - [anon_sym_GT] = ACTIONS(5533), - [anon_sym_LT_EQ] = ACTIONS(5537), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_LT] = ACTIONS(5541), - [anon_sym_GT_GT] = ACTIONS(5541), - [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(5545), - [anon_sym_PLUS_PLUS] = ACTIONS(5545), - [anon_sym_DOT] = ACTIONS(5549), - [anon_sym_DASH_GT] = ACTIONS(5549), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(5503), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(5500), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [1003] = { - [sym__declarator] = STATE(262), - [sym__abstract_declarator] = STATE(263), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_COMMA] = ACTIONS(5510), + [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_SEMI] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_LBRACK] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(5510), + [anon_sym_EQ] = ACTIONS(5521), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_COLON] = ACTIONS(5510), + [anon_sym_QMARK] = ACTIONS(5525), + [anon_sym_STAR_EQ] = ACTIONS(5529), + [anon_sym_SLASH_EQ] = ACTIONS(5529), + [anon_sym_PERCENT_EQ] = ACTIONS(5529), + [anon_sym_PLUS_EQ] = ACTIONS(5529), + [anon_sym_DASH_EQ] = ACTIONS(5529), + [anon_sym_LT_LT_EQ] = ACTIONS(5529), + [anon_sym_GT_GT_EQ] = ACTIONS(5529), + [anon_sym_AMP_EQ] = ACTIONS(5529), + [anon_sym_CARET_EQ] = ACTIONS(5529), + [anon_sym_PIPE_EQ] = ACTIONS(5529), + [anon_sym_AMP] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5537), + [anon_sym_AMP_AMP] = ACTIONS(5537), + [anon_sym_PIPE] = ACTIONS(5533), + [anon_sym_CARET] = ACTIONS(5533), + [anon_sym_EQ_EQ] = ACTIONS(5541), + [anon_sym_BANG_EQ] = ACTIONS(5541), + [anon_sym_LT] = ACTIONS(5545), + [anon_sym_GT] = ACTIONS(5545), + [anon_sym_LT_EQ] = ACTIONS(5549), + [anon_sym_GT_EQ] = ACTIONS(5549), + [anon_sym_LT_LT] = ACTIONS(5553), + [anon_sym_GT_GT] = ACTIONS(5553), + [anon_sym_PLUS] = ACTIONS(5513), + [anon_sym_DASH] = ACTIONS(5513), + [anon_sym_SLASH] = ACTIONS(5513), + [anon_sym_PERCENT] = ACTIONS(5513), + [anon_sym_DASH_DASH] = ACTIONS(5557), + [anon_sym_PLUS_PLUS] = ACTIONS(5557), + [anon_sym_DOT] = ACTIONS(5561), + [anon_sym_DASH_GT] = ACTIONS(5561), + [sym_comment] = ACTIONS(119), + }, + [1004] = { + [sym__declarator] = STATE(263), + [sym__abstract_declarator] = STATE(264), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), + [sym_abstract_array_declarator] = STATE(211), [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -45429,13 +45513,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(466), + [sym_type_name] = STATE(467), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(638), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(645), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -45445,30 +45529,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5486), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5498), [sym_comment] = ACTIONS(119), }, - [1004] = { - [sym__declarator] = STATE(259), - [sym__abstract_declarator] = STATE(260), + [1005] = { + [sym__declarator] = STATE(260), + [sym__abstract_declarator] = STATE(261), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym__expression] = STATE(417), + [sym_abstract_array_declarator] = STATE(211), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45484,122 +45568,122 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5553), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5556), - [sym_comment] = ACTIONS(119), - }, - [1005] = { - [anon_sym_LPAREN] = ACTIONS(5558), - [anon_sym_RPAREN] = ACTIONS(5563), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(5565), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(2239), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(119), }, [1006] = { - [anon_sym_LPAREN] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(5488), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(5570), + [anon_sym_RPAREN] = ACTIONS(5575), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(5575), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), [sym_comment] = ACTIONS(119), }, [1007] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(1020), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_comment] = ACTIONS(119), + }, + [1008] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(1021), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45615,37 +45699,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [1008] = { - [sym__expression] = STATE(1017), + [1009] = { + [sym__expression] = STATE(1018), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45661,82 +45745,82 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(5567), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(5579), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1009] = { - [aux_sym_for_statement_repeat1] = STATE(1012), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(5569), - [anon_sym_SEMI] = ACTIONS(5571), - [anon_sym_STAR] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(3787), - [anon_sym_QMARK] = ACTIONS(3789), - [anon_sym_STAR_EQ] = ACTIONS(3791), - [anon_sym_SLASH_EQ] = ACTIONS(3791), - [anon_sym_PERCENT_EQ] = ACTIONS(3791), - [anon_sym_PLUS_EQ] = ACTIONS(3791), - [anon_sym_DASH_EQ] = ACTIONS(3791), - [anon_sym_LT_LT_EQ] = ACTIONS(3791), - [anon_sym_GT_GT_EQ] = ACTIONS(3791), - [anon_sym_AMP_EQ] = ACTIONS(3791), - [anon_sym_CARET_EQ] = ACTIONS(3791), - [anon_sym_PIPE_EQ] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3797), - [anon_sym_BANG_EQ] = ACTIONS(3797), - [anon_sym_LT] = ACTIONS(3799), - [anon_sym_GT] = ACTIONS(3799), - [anon_sym_LT_EQ] = ACTIONS(3801), - [anon_sym_GT_EQ] = ACTIONS(3801), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3785), - [anon_sym_DASH] = ACTIONS(3785), - [anon_sym_SLASH] = ACTIONS(3785), - [anon_sym_PERCENT] = ACTIONS(3785), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [1010] = { + [aux_sym_for_statement_repeat1] = STATE(1013), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(5581), + [anon_sym_SEMI] = ACTIONS(5583), + [anon_sym_STAR] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(3799), + [anon_sym_QMARK] = ACTIONS(3801), + [anon_sym_STAR_EQ] = ACTIONS(3803), + [anon_sym_SLASH_EQ] = ACTIONS(3803), + [anon_sym_PERCENT_EQ] = ACTIONS(3803), + [anon_sym_PLUS_EQ] = ACTIONS(3803), + [anon_sym_DASH_EQ] = ACTIONS(3803), + [anon_sym_LT_LT_EQ] = ACTIONS(3803), + [anon_sym_GT_GT_EQ] = ACTIONS(3803), + [anon_sym_AMP_EQ] = ACTIONS(3803), + [anon_sym_CARET_EQ] = ACTIONS(3803), + [anon_sym_PIPE_EQ] = ACTIONS(3803), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_PIPE_PIPE] = ACTIONS(3807), + [anon_sym_AMP_AMP] = ACTIONS(3807), + [anon_sym_PIPE] = ACTIONS(3805), + [anon_sym_CARET] = ACTIONS(3805), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(3811), + [anon_sym_GT] = ACTIONS(3811), + [anon_sym_LT_EQ] = ACTIONS(3813), + [anon_sym_GT_EQ] = ACTIONS(3813), + [anon_sym_LT_LT] = ACTIONS(3815), + [anon_sym_GT_GT] = ACTIONS(3815), + [anon_sym_PLUS] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_SLASH] = ACTIONS(3797), + [anon_sym_PERCENT] = ACTIONS(3797), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, - [1010] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(1015), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [1011] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(1016), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45752,37 +45836,37 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, - [1011] = { - [sym__expression] = STATE(1014), + [1012] = { + [sym__expression] = STATE(1015), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45798,44 +45882,44 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(3635), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(3647), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_sizeof] = ACTIONS(435), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1012] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(5573), + [1013] = { + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(5585), [sym_comment] = ACTIONS(119), }, - [1013] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(814), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [1014] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(815), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -45851,140 +45935,140 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(119), - }, - [1014] = { - [aux_sym_for_statement_repeat1] = STATE(865), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(3783), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [1015] = { - [anon_sym_LPAREN] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(5575), - [anon_sym_STAR] = ACTIONS(5575), - [anon_sym_static] = ACTIONS(5579), - [anon_sym_LBRACE] = ACTIONS(5575), - [anon_sym_RBRACE] = ACTIONS(5575), - [anon_sym_typedef] = ACTIONS(5579), - [anon_sym_extern] = ACTIONS(5579), - [anon_sym_auto] = ACTIONS(5579), - [anon_sym_register] = ACTIONS(5579), - [anon_sym_const] = ACTIONS(5579), - [anon_sym_restrict] = ACTIONS(5579), - [anon_sym_volatile] = ACTIONS(5579), - [sym_function_specifier] = ACTIONS(5579), - [anon_sym_unsigned] = ACTIONS(5579), - [anon_sym_long] = ACTIONS(5579), - [anon_sym_short] = ACTIONS(5579), - [anon_sym_enum] = ACTIONS(5579), - [anon_sym_struct] = ACTIONS(5579), - [anon_sym_union] = ACTIONS(5579), - [anon_sym_if] = ACTIONS(5579), - [anon_sym_else] = ACTIONS(5579), - [anon_sym_switch] = ACTIONS(5579), - [anon_sym_case] = ACTIONS(5579), - [anon_sym_default] = ACTIONS(5579), - [anon_sym_while] = ACTIONS(5579), - [anon_sym_do] = ACTIONS(5579), - [anon_sym_for] = ACTIONS(5579), - [anon_sym_return] = ACTIONS(5579), - [anon_sym_break] = ACTIONS(5579), - [anon_sym_continue] = ACTIONS(5579), - [anon_sym_goto] = ACTIONS(5579), - [anon_sym_AMP] = ACTIONS(5575), - [anon_sym_BANG] = ACTIONS(5575), - [anon_sym_TILDE] = ACTIONS(5575), - [anon_sym_PLUS] = ACTIONS(5579), - [anon_sym_DASH] = ACTIONS(5579), - [anon_sym_DASH_DASH] = ACTIONS(5575), - [anon_sym_PLUS_PLUS] = ACTIONS(5575), - [anon_sym_sizeof] = ACTIONS(5579), - [sym_number_literal] = ACTIONS(5579), - [sym_char_literal] = ACTIONS(5579), - [sym_string_literal] = ACTIONS(5579), - [sym_identifier] = ACTIONS(5583), + [aux_sym_for_statement_repeat1] = STATE(866), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [1016] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(1019), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), + [anon_sym_LPAREN] = ACTIONS(5587), + [anon_sym_SEMI] = ACTIONS(5587), + [anon_sym_STAR] = ACTIONS(5587), + [anon_sym_static] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(5587), + [anon_sym_RBRACE] = ACTIONS(5587), + [anon_sym_typedef] = ACTIONS(5591), + [anon_sym_extern] = ACTIONS(5591), + [anon_sym_auto] = ACTIONS(5591), + [anon_sym_register] = ACTIONS(5591), + [anon_sym_const] = ACTIONS(5591), + [anon_sym_restrict] = ACTIONS(5591), + [anon_sym_volatile] = ACTIONS(5591), + [sym_function_specifier] = ACTIONS(5591), + [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(5591), + [anon_sym_else] = ACTIONS(5591), + [anon_sym_switch] = ACTIONS(5591), + [anon_sym_case] = ACTIONS(5591), + [anon_sym_default] = ACTIONS(5591), + [anon_sym_while] = ACTIONS(5591), + [anon_sym_do] = ACTIONS(5591), + [anon_sym_for] = ACTIONS(5591), + [anon_sym_return] = ACTIONS(5591), + [anon_sym_break] = ACTIONS(5591), + [anon_sym_continue] = ACTIONS(5591), + [anon_sym_goto] = ACTIONS(5591), + [anon_sym_AMP] = ACTIONS(5587), + [anon_sym_BANG] = ACTIONS(5587), + [anon_sym_TILDE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5591), + [anon_sym_DASH] = ACTIONS(5591), + [anon_sym_DASH_DASH] = ACTIONS(5587), + [anon_sym_PLUS_PLUS] = ACTIONS(5587), + [anon_sym_sizeof] = ACTIONS(5591), + [sym_number_literal] = ACTIONS(5591), + [sym_char_literal] = ACTIONS(5591), + [sym_string_literal] = ACTIONS(5591), + [sym_identifier] = ACTIONS(5595), + [sym_comment] = ACTIONS(119), + }, + [1017] = { + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(1020), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46000,270 +46084,270 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(858), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(119), - }, - [1017] = { - [aux_sym_for_statement_repeat1] = STATE(1018), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(3635), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_sizeof] = ACTIONS(867), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(1563), [sym_comment] = ACTIONS(119), }, [1018] = { - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(3783), + [aux_sym_for_statement_repeat1] = STATE(1019), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(3647), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(389), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [1019] = { - [anon_sym_LPAREN] = ACTIONS(5587), - [anon_sym_SEMI] = ACTIONS(5587), - [anon_sym_STAR] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5590), - [anon_sym_LBRACE] = ACTIONS(5587), - [anon_sym_RBRACE] = ACTIONS(5587), - [anon_sym_typedef] = ACTIONS(5590), - [anon_sym_extern] = ACTIONS(5590), - [anon_sym_auto] = ACTIONS(5590), - [anon_sym_register] = ACTIONS(5590), - [anon_sym_const] = ACTIONS(5590), - [anon_sym_restrict] = ACTIONS(5590), - [anon_sym_volatile] = ACTIONS(5590), - [sym_function_specifier] = ACTIONS(5590), - [anon_sym_unsigned] = ACTIONS(5590), - [anon_sym_long] = ACTIONS(5590), - [anon_sym_short] = ACTIONS(5590), - [anon_sym_enum] = ACTIONS(5590), - [anon_sym_struct] = ACTIONS(5590), - [anon_sym_union] = ACTIONS(5590), - [anon_sym_if] = ACTIONS(5590), - [anon_sym_else] = ACTIONS(5590), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_case] = ACTIONS(5590), - [anon_sym_default] = ACTIONS(5590), - [anon_sym_while] = ACTIONS(5590), - [anon_sym_do] = ACTIONS(5590), - [anon_sym_for] = ACTIONS(5590), - [anon_sym_return] = ACTIONS(5590), - [anon_sym_break] = ACTIONS(5590), - [anon_sym_continue] = ACTIONS(5590), - [anon_sym_goto] = ACTIONS(5590), - [anon_sym_AMP] = ACTIONS(5587), - [anon_sym_BANG] = ACTIONS(5587), - [anon_sym_TILDE] = ACTIONS(5587), - [anon_sym_PLUS] = ACTIONS(5590), - [anon_sym_DASH] = ACTIONS(5590), - [anon_sym_DASH_DASH] = ACTIONS(5587), - [anon_sym_PLUS_PLUS] = ACTIONS(5587), - [anon_sym_sizeof] = ACTIONS(5590), - [sym_number_literal] = ACTIONS(5590), - [sym_char_literal] = ACTIONS(5590), - [sym_string_literal] = ACTIONS(5590), - [sym_identifier] = ACTIONS(5593), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(3795), [sym_comment] = ACTIONS(119), }, [1020] = { - [anon_sym_LPAREN] = ACTIONS(5596), - [anon_sym_SEMI] = ACTIONS(5596), - [anon_sym_STAR] = ACTIONS(5596), - [anon_sym_static] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(5596), - [anon_sym_RBRACE] = ACTIONS(5596), - [anon_sym_typedef] = ACTIONS(5600), - [anon_sym_extern] = ACTIONS(5600), - [anon_sym_auto] = ACTIONS(5600), - [anon_sym_register] = ACTIONS(5600), - [anon_sym_const] = ACTIONS(5600), - [anon_sym_restrict] = ACTIONS(5600), - [anon_sym_volatile] = ACTIONS(5600), - [sym_function_specifier] = ACTIONS(5600), - [anon_sym_unsigned] = ACTIONS(5600), - [anon_sym_long] = ACTIONS(5600), - [anon_sym_short] = ACTIONS(5600), - [anon_sym_enum] = ACTIONS(5600), - [anon_sym_struct] = ACTIONS(5600), - [anon_sym_union] = ACTIONS(5600), - [anon_sym_if] = ACTIONS(5600), - [anon_sym_else] = ACTIONS(5600), - [anon_sym_switch] = ACTIONS(5600), - [anon_sym_case] = ACTIONS(5600), - [anon_sym_default] = ACTIONS(5600), - [anon_sym_while] = ACTIONS(5600), - [anon_sym_do] = ACTIONS(5600), - [anon_sym_for] = ACTIONS(5600), - [anon_sym_return] = ACTIONS(5600), - [anon_sym_break] = ACTIONS(5600), - [anon_sym_continue] = ACTIONS(5600), - [anon_sym_goto] = ACTIONS(5600), - [anon_sym_AMP] = ACTIONS(5596), - [anon_sym_BANG] = ACTIONS(5596), - [anon_sym_TILDE] = ACTIONS(5596), - [anon_sym_PLUS] = ACTIONS(5600), - [anon_sym_DASH] = ACTIONS(5600), - [anon_sym_DASH_DASH] = ACTIONS(5596), - [anon_sym_PLUS_PLUS] = ACTIONS(5596), - [anon_sym_sizeof] = ACTIONS(5600), - [sym_number_literal] = ACTIONS(5600), - [sym_char_literal] = ACTIONS(5600), - [sym_string_literal] = ACTIONS(5600), - [sym_identifier] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_SEMI] = ACTIONS(5599), + [anon_sym_STAR] = ACTIONS(5599), + [anon_sym_static] = ACTIONS(5602), + [anon_sym_LBRACE] = ACTIONS(5599), + [anon_sym_RBRACE] = ACTIONS(5599), + [anon_sym_typedef] = ACTIONS(5602), + [anon_sym_extern] = ACTIONS(5602), + [anon_sym_auto] = ACTIONS(5602), + [anon_sym_register] = ACTIONS(5602), + [anon_sym_const] = ACTIONS(5602), + [anon_sym_restrict] = ACTIONS(5602), + [anon_sym_volatile] = ACTIONS(5602), + [sym_function_specifier] = ACTIONS(5602), + [anon_sym_unsigned] = ACTIONS(5602), + [anon_sym_long] = ACTIONS(5602), + [anon_sym_short] = ACTIONS(5602), + [anon_sym_enum] = ACTIONS(5602), + [anon_sym_struct] = ACTIONS(5602), + [anon_sym_union] = ACTIONS(5602), + [anon_sym_if] = ACTIONS(5602), + [anon_sym_else] = ACTIONS(5602), + [anon_sym_switch] = ACTIONS(5602), + [anon_sym_case] = ACTIONS(5602), + [anon_sym_default] = ACTIONS(5602), + [anon_sym_while] = ACTIONS(5602), + [anon_sym_do] = ACTIONS(5602), + [anon_sym_for] = ACTIONS(5602), + [anon_sym_return] = ACTIONS(5602), + [anon_sym_break] = ACTIONS(5602), + [anon_sym_continue] = ACTIONS(5602), + [anon_sym_goto] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(5599), + [anon_sym_BANG] = ACTIONS(5599), + [anon_sym_TILDE] = ACTIONS(5599), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_DASH_DASH] = ACTIONS(5599), + [anon_sym_PLUS_PLUS] = ACTIONS(5599), + [anon_sym_sizeof] = ACTIONS(5602), + [sym_number_literal] = ACTIONS(5602), + [sym_char_literal] = ACTIONS(5602), + [sym_string_literal] = ACTIONS(5602), + [sym_identifier] = ACTIONS(5605), [sym_comment] = ACTIONS(119), }, [1021] = { [anon_sym_LPAREN] = ACTIONS(5608), [anon_sym_SEMI] = ACTIONS(5608), [anon_sym_STAR] = ACTIONS(5608), - [anon_sym_static] = ACTIONS(5617), + [anon_sym_static] = ACTIONS(5612), [anon_sym_LBRACE] = ACTIONS(5608), [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_typedef] = ACTIONS(5617), - [anon_sym_extern] = ACTIONS(5617), - [anon_sym_auto] = ACTIONS(5617), - [anon_sym_register] = ACTIONS(5617), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [sym_function_specifier] = ACTIONS(5617), - [anon_sym_unsigned] = ACTIONS(5617), - [anon_sym_long] = ACTIONS(5617), - [anon_sym_short] = ACTIONS(5617), - [anon_sym_enum] = ACTIONS(5617), - [anon_sym_struct] = ACTIONS(5617), - [anon_sym_union] = ACTIONS(5617), - [anon_sym_if] = ACTIONS(5617), - [anon_sym_else] = ACTIONS(5626), - [anon_sym_switch] = ACTIONS(5617), - [anon_sym_case] = ACTIONS(5617), - [anon_sym_default] = ACTIONS(5617), - [anon_sym_while] = ACTIONS(5617), - [anon_sym_do] = ACTIONS(5617), - [anon_sym_for] = ACTIONS(5617), - [anon_sym_return] = ACTIONS(5617), - [anon_sym_break] = ACTIONS(5617), - [anon_sym_continue] = ACTIONS(5617), - [anon_sym_goto] = ACTIONS(5617), + [anon_sym_typedef] = ACTIONS(5612), + [anon_sym_extern] = ACTIONS(5612), + [anon_sym_auto] = ACTIONS(5612), + [anon_sym_register] = ACTIONS(5612), + [anon_sym_const] = ACTIONS(5612), + [anon_sym_restrict] = ACTIONS(5612), + [anon_sym_volatile] = ACTIONS(5612), + [sym_function_specifier] = ACTIONS(5612), + [anon_sym_unsigned] = ACTIONS(5612), + [anon_sym_long] = ACTIONS(5612), + [anon_sym_short] = ACTIONS(5612), + [anon_sym_enum] = ACTIONS(5612), + [anon_sym_struct] = ACTIONS(5612), + [anon_sym_union] = ACTIONS(5612), + [anon_sym_if] = ACTIONS(5612), + [anon_sym_else] = ACTIONS(5612), + [anon_sym_switch] = ACTIONS(5612), + [anon_sym_case] = ACTIONS(5612), + [anon_sym_default] = ACTIONS(5612), + [anon_sym_while] = ACTIONS(5612), + [anon_sym_do] = ACTIONS(5612), + [anon_sym_for] = ACTIONS(5612), + [anon_sym_return] = ACTIONS(5612), + [anon_sym_break] = ACTIONS(5612), + [anon_sym_continue] = ACTIONS(5612), + [anon_sym_goto] = ACTIONS(5612), [anon_sym_AMP] = ACTIONS(5608), [anon_sym_BANG] = ACTIONS(5608), [anon_sym_TILDE] = ACTIONS(5608), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(5617), + [anon_sym_PLUS] = ACTIONS(5612), + [anon_sym_DASH] = ACTIONS(5612), [anon_sym_DASH_DASH] = ACTIONS(5608), [anon_sym_PLUS_PLUS] = ACTIONS(5608), - [anon_sym_sizeof] = ACTIONS(5617), - [sym_number_literal] = ACTIONS(5617), - [sym_char_literal] = ACTIONS(5617), - [sym_string_literal] = ACTIONS(5617), - [sym_identifier] = ACTIONS(5636), + [anon_sym_sizeof] = ACTIONS(5612), + [sym_number_literal] = ACTIONS(5612), + [sym_char_literal] = ACTIONS(5612), + [sym_string_literal] = ACTIONS(5612), + [sym_identifier] = ACTIONS(5616), [sym_comment] = ACTIONS(119), }, [1022] = { - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_COLON] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_STAR_EQ] = ACTIONS(3342), - [anon_sym_SLASH_EQ] = ACTIONS(3342), - [anon_sym_PERCENT_EQ] = ACTIONS(3342), - [anon_sym_PLUS_EQ] = ACTIONS(3342), - [anon_sym_DASH_EQ] = ACTIONS(3342), - [anon_sym_LT_LT_EQ] = ACTIONS(3342), - [anon_sym_GT_GT_EQ] = ACTIONS(3342), - [anon_sym_AMP_EQ] = ACTIONS(3342), - [anon_sym_CARET_EQ] = ACTIONS(3342), - [anon_sym_PIPE_EQ] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3345), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(3360), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3366), - [anon_sym_DASH_GT] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5620), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_static] = ACTIONS(5629), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_typedef] = ACTIONS(5629), + [anon_sym_extern] = ACTIONS(5629), + [anon_sym_auto] = ACTIONS(5629), + [anon_sym_register] = ACTIONS(5629), + [anon_sym_const] = ACTIONS(5629), + [anon_sym_restrict] = ACTIONS(5629), + [anon_sym_volatile] = ACTIONS(5629), + [sym_function_specifier] = ACTIONS(5629), + [anon_sym_unsigned] = ACTIONS(5629), + [anon_sym_long] = ACTIONS(5629), + [anon_sym_short] = ACTIONS(5629), + [anon_sym_enum] = ACTIONS(5629), + [anon_sym_struct] = ACTIONS(5629), + [anon_sym_union] = ACTIONS(5629), + [anon_sym_if] = ACTIONS(5629), + [anon_sym_else] = ACTIONS(5638), + [anon_sym_switch] = ACTIONS(5629), + [anon_sym_case] = ACTIONS(5629), + [anon_sym_default] = ACTIONS(5629), + [anon_sym_while] = ACTIONS(5629), + [anon_sym_do] = ACTIONS(5629), + [anon_sym_for] = ACTIONS(5629), + [anon_sym_return] = ACTIONS(5629), + [anon_sym_break] = ACTIONS(5629), + [anon_sym_continue] = ACTIONS(5629), + [anon_sym_goto] = ACTIONS(5629), + [anon_sym_AMP] = ACTIONS(5620), + [anon_sym_BANG] = ACTIONS(5620), + [anon_sym_TILDE] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5629), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_sizeof] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [sym_char_literal] = ACTIONS(5629), + [sym_string_literal] = ACTIONS(5629), + [sym_identifier] = ACTIONS(5648), [sym_comment] = ACTIONS(119), }, [1023] = { - [sym__declarator] = STATE(262), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(5657), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_STAR_EQ] = ACTIONS(3354), + [anon_sym_SLASH_EQ] = ACTIONS(3354), + [anon_sym_PERCENT_EQ] = ACTIONS(3354), + [anon_sym_PLUS_EQ] = ACTIONS(3354), + [anon_sym_DASH_EQ] = ACTIONS(3354), + [anon_sym_LT_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_GT_EQ] = ACTIONS(3354), + [anon_sym_AMP_EQ] = ACTIONS(3354), + [anon_sym_CARET_EQ] = ACTIONS(3354), + [anon_sym_PIPE_EQ] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3363), + [anon_sym_BANG_EQ] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_LT_LT] = ACTIONS(3372), + [anon_sym_GT_GT] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_DASH_GT] = ACTIONS(3378), + [sym_comment] = ACTIONS(119), + }, + [1024] = { + [sym__declarator] = STATE(263), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), @@ -46289,12 +46373,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(1048), + [sym_type_name] = STATE(1049), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_STAR] = ACTIONS(5650), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5662), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -46304,31 +46388,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5486), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5498), [sym_comment] = ACTIONS(119), }, - [1024] = { - [anon_sym_COMMA] = ACTIONS(5652), - [anon_sym_RPAREN] = ACTIONS(5652), + [1025] = { + [anon_sym_COMMA] = ACTIONS(5664), + [anon_sym_RPAREN] = ACTIONS(5664), [sym_comment] = ACTIONS(119), }, - [1025] = { - [sym__declarator] = STATE(911), + [1026] = { + [sym__declarator] = STATE(912), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym__expression] = STATE(1047), + [sym__expression] = STATE(1048), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46344,70 +46428,70 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5657), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5669), [sym_comment] = ACTIONS(119), }, - [1026] = { - [anon_sym_LPAREN] = ACTIONS(5659), - [anon_sym_COMMA] = ACTIONS(5659), - [anon_sym_RPAREN] = ACTIONS(5659), - [anon_sym_SEMI] = ACTIONS(5659), - [anon_sym_STAR] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(5659), - [anon_sym_RBRACK] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_COLON] = ACTIONS(5659), - [anon_sym_QMARK] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PERCENT_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_LT_LT_EQ] = ACTIONS(996), - [anon_sym_GT_GT_EQ] = ACTIONS(996), - [anon_sym_AMP_EQ] = ACTIONS(996), - [anon_sym_CARET_EQ] = ACTIONS(996), - [anon_sym_PIPE_EQ] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(996), - [anon_sym_BANG_EQ] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_LT_EQ] = ACTIONS(996), - [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_LT] = ACTIONS(998), - [anon_sym_GT_GT] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DASH_GT] = ACTIONS(996), - [sym_identifier] = ACTIONS(4401), + [1027] = { + [anon_sym_LPAREN] = ACTIONS(5671), + [anon_sym_COMMA] = ACTIONS(5671), + [anon_sym_RPAREN] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5671), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_STAR_EQ] = ACTIONS(1005), + [anon_sym_SLASH_EQ] = ACTIONS(1005), + [anon_sym_PERCENT_EQ] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_GT_EQ] = ACTIONS(1005), + [anon_sym_AMP_EQ] = ACTIONS(1005), + [anon_sym_CARET_EQ] = ACTIONS(1005), + [anon_sym_PIPE_EQ] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_DASH_GT] = ACTIONS(1005), + [sym_identifier] = ACTIONS(4413), [sym_comment] = ACTIONS(119), }, - [1027] = { - [sym__expression] = STATE(1047), + [1028] = { + [sym__expression] = STATE(1048), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46423,24 +46507,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1028] = { - [sym__expression] = STATE(1066), + [1029] = { + [sym__expression] = STATE(1067), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46456,24 +46540,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1029] = { - [sym__expression] = STATE(1065), + [1030] = { + [sym__expression] = STATE(1066), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46489,24 +46573,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1030] = { - [sym__expression] = STATE(1064), + [1031] = { + [sym__expression] = STATE(1065), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46522,24 +46606,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1031] = { - [sym__expression] = STATE(1061), + [1032] = { + [sym__expression] = STATE(1062), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46555,130 +46639,130 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [1032] = { - [anon_sym_LPAREN] = ACTIONS(5558), - [anon_sym_COMMA] = ACTIONS(5671), - [anon_sym_RPAREN] = ACTIONS(5678), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_EQ] = ACTIONS(5683), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(256), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [sym_identifier] = ACTIONS(190), + [anon_sym_LPAREN] = ACTIONS(5681), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [1033] = { - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(5687), - [anon_sym_SEMI] = ACTIONS(5687), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), - [anon_sym_COLON] = ACTIONS(5692), + [anon_sym_LPAREN] = ACTIONS(5570), + [anon_sym_COMMA] = ACTIONS(5683), + [anon_sym_RPAREN] = ACTIONS(5690), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(5575), + [anon_sym_EQ] = ACTIONS(5695), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(263), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_identifier] = ACTIONS(192), [sym_comment] = ACTIONS(119), }, [1034] = { - [anon_sym_COMMA] = ACTIONS(5695), - [anon_sym_SEMI] = ACTIONS(5695), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(5699), + [anon_sym_SEMI] = ACTIONS(5699), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_COLON] = ACTIONS(5704), [sym_comment] = ACTIONS(119), }, [1035] = { - [anon_sym_COMMA] = ACTIONS(5698), - [anon_sym_RPAREN] = ACTIONS(5698), + [anon_sym_COMMA] = ACTIONS(5707), + [anon_sym_SEMI] = ACTIONS(5707), [sym_comment] = ACTIONS(119), }, [1036] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(5701), - [anon_sym_RPAREN] = ACTIONS(5705), - [anon_sym_STAR] = ACTIONS(5708), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(5710), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_QMARK] = ACTIONS(5712), - [anon_sym_STAR_EQ] = ACTIONS(5714), - [anon_sym_SLASH_EQ] = ACTIONS(5714), - [anon_sym_PERCENT_EQ] = ACTIONS(5714), - [anon_sym_PLUS_EQ] = ACTIONS(5714), - [anon_sym_DASH_EQ] = ACTIONS(5714), - [anon_sym_LT_LT_EQ] = ACTIONS(5714), - [anon_sym_GT_GT_EQ] = ACTIONS(5714), - [anon_sym_AMP_EQ] = ACTIONS(5714), - [anon_sym_CARET_EQ] = ACTIONS(5714), - [anon_sym_PIPE_EQ] = ACTIONS(5714), - [anon_sym_AMP] = ACTIONS(5716), - [anon_sym_PIPE_PIPE] = ACTIONS(5718), - [anon_sym_AMP_AMP] = ACTIONS(5718), - [anon_sym_PIPE] = ACTIONS(5716), - [anon_sym_CARET] = ACTIONS(5716), - [anon_sym_EQ_EQ] = ACTIONS(5720), - [anon_sym_BANG_EQ] = ACTIONS(5720), - [anon_sym_LT] = ACTIONS(5722), - [anon_sym_GT] = ACTIONS(5722), - [anon_sym_LT_EQ] = ACTIONS(5724), - [anon_sym_GT_EQ] = ACTIONS(5724), - [anon_sym_LT_LT] = ACTIONS(5726), - [anon_sym_GT_GT] = ACTIONS(5726), - [anon_sym_PLUS] = ACTIONS(5708), - [anon_sym_DASH] = ACTIONS(5708), - [anon_sym_SLASH] = ACTIONS(5708), - [anon_sym_PERCENT] = ACTIONS(5708), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(5710), + [anon_sym_RPAREN] = ACTIONS(5710), [sym_comment] = ACTIONS(119), }, [1037] = { - [sym__expression] = STATE(1046), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(5713), + [anon_sym_RPAREN] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_QMARK] = ACTIONS(5724), + [anon_sym_STAR_EQ] = ACTIONS(5726), + [anon_sym_SLASH_EQ] = ACTIONS(5726), + [anon_sym_PERCENT_EQ] = ACTIONS(5726), + [anon_sym_PLUS_EQ] = ACTIONS(5726), + [anon_sym_DASH_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_EQ] = ACTIONS(5726), + [anon_sym_GT_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP_EQ] = ACTIONS(5726), + [anon_sym_CARET_EQ] = ACTIONS(5726), + [anon_sym_PIPE_EQ] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5728), + [anon_sym_PIPE_PIPE] = ACTIONS(5730), + [anon_sym_AMP_AMP] = ACTIONS(5730), + [anon_sym_PIPE] = ACTIONS(5728), + [anon_sym_CARET] = ACTIONS(5728), + [anon_sym_EQ_EQ] = ACTIONS(5732), + [anon_sym_BANG_EQ] = ACTIONS(5732), + [anon_sym_LT] = ACTIONS(5734), + [anon_sym_GT] = ACTIONS(5734), + [anon_sym_LT_EQ] = ACTIONS(5736), + [anon_sym_GT_EQ] = ACTIONS(5736), + [anon_sym_LT_LT] = ACTIONS(5738), + [anon_sym_GT_GT] = ACTIONS(5738), + [anon_sym_PLUS] = ACTIONS(5720), + [anon_sym_DASH] = ACTIONS(5720), + [anon_sym_SLASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5720), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [1038] = { + [sym__expression] = STATE(1047), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46694,24 +46778,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1038] = { - [sym__expression] = STATE(1056), + [1039] = { + [sym__expression] = STATE(1057), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46727,24 +46811,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1039] = { - [sym__expression] = STATE(1057), + [1040] = { + [sym__expression] = STATE(1058), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46760,24 +46844,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_sizeof] = ACTIONS(442), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [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_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1040] = { - [sym__expression] = STATE(1054), + [1041] = { + [sym__expression] = STATE(1055), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46793,24 +46877,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1041] = { - [sym__expression] = STATE(1055), + [1042] = { + [sym__expression] = STATE(1056), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46826,24 +46910,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1042] = { - [sym__expression] = STATE(1053), + [1043] = { + [sym__expression] = STATE(1054), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46859,24 +46943,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1043] = { - [sym__expression] = STATE(1052), + [1044] = { + [sym__expression] = STATE(1053), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46892,24 +46976,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1044] = { - [sym__expression] = STATE(1051), + [1045] = { + [sym__expression] = STATE(1052), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -46925,23 +47009,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1045] = { + [1046] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -46964,12 +47048,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(1048), + [sym_type_name] = STATE(1049), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -46979,110 +47063,110 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [1046] = { - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(5728), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(5731), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(5734), - [anon_sym_STAR_EQ] = ACTIONS(5737), - [anon_sym_SLASH_EQ] = ACTIONS(5737), - [anon_sym_PERCENT_EQ] = ACTIONS(5737), - [anon_sym_PLUS_EQ] = ACTIONS(5737), - [anon_sym_DASH_EQ] = ACTIONS(5737), - [anon_sym_LT_LT_EQ] = ACTIONS(5737), - [anon_sym_GT_GT_EQ] = ACTIONS(5737), - [anon_sym_AMP_EQ] = ACTIONS(5737), - [anon_sym_CARET_EQ] = ACTIONS(5737), - [anon_sym_PIPE_EQ] = ACTIONS(5737), - [anon_sym_AMP] = ACTIONS(5740), - [anon_sym_PIPE_PIPE] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5743), - [anon_sym_PIPE] = ACTIONS(5740), - [anon_sym_CARET] = ACTIONS(5740), - [anon_sym_EQ_EQ] = ACTIONS(5746), - [anon_sym_BANG_EQ] = ACTIONS(5746), - [anon_sym_LT] = ACTIONS(5749), - [anon_sym_GT] = ACTIONS(5749), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_LT] = ACTIONS(5755), - [anon_sym_GT_GT] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5728), - [anon_sym_DASH] = ACTIONS(5728), - [anon_sym_SLASH] = ACTIONS(5728), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_DASH_GT] = ACTIONS(3408), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [1047] = { - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(5758), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(5761), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(5764), - [anon_sym_STAR_EQ] = ACTIONS(5767), - [anon_sym_SLASH_EQ] = ACTIONS(5767), - [anon_sym_PERCENT_EQ] = ACTIONS(5767), - [anon_sym_PLUS_EQ] = ACTIONS(5767), - [anon_sym_DASH_EQ] = ACTIONS(5767), - [anon_sym_LT_LT_EQ] = ACTIONS(5767), - [anon_sym_GT_GT_EQ] = ACTIONS(5767), - [anon_sym_AMP_EQ] = ACTIONS(5767), - [anon_sym_CARET_EQ] = ACTIONS(5767), - [anon_sym_PIPE_EQ] = ACTIONS(5767), - [anon_sym_AMP] = ACTIONS(5770), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5770), - [anon_sym_CARET] = ACTIONS(5770), - [anon_sym_EQ_EQ] = ACTIONS(5776), - [anon_sym_BANG_EQ] = ACTIONS(5776), - [anon_sym_LT] = ACTIONS(5779), - [anon_sym_GT] = ACTIONS(5779), - [anon_sym_LT_EQ] = ACTIONS(5782), - [anon_sym_GT_EQ] = ACTIONS(5782), - [anon_sym_LT_LT] = ACTIONS(5785), - [anon_sym_GT_GT] = ACTIONS(5785), - [anon_sym_PLUS] = ACTIONS(5758), - [anon_sym_DASH] = ACTIONS(5758), - [anon_sym_SLASH] = ACTIONS(5758), - [anon_sym_PERCENT] = ACTIONS(5758), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DOT] = ACTIONS(3576), - [anon_sym_DASH_GT] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(5743), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(5746), + [anon_sym_STAR_EQ] = ACTIONS(5749), + [anon_sym_SLASH_EQ] = ACTIONS(5749), + [anon_sym_PERCENT_EQ] = ACTIONS(5749), + [anon_sym_PLUS_EQ] = ACTIONS(5749), + [anon_sym_DASH_EQ] = ACTIONS(5749), + [anon_sym_LT_LT_EQ] = ACTIONS(5749), + [anon_sym_GT_GT_EQ] = ACTIONS(5749), + [anon_sym_AMP_EQ] = ACTIONS(5749), + [anon_sym_CARET_EQ] = ACTIONS(5749), + [anon_sym_PIPE_EQ] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5752), + [anon_sym_PIPE_PIPE] = ACTIONS(5755), + [anon_sym_AMP_AMP] = ACTIONS(5755), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(5752), + [anon_sym_EQ_EQ] = ACTIONS(5758), + [anon_sym_BANG_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5761), + [anon_sym_GT] = ACTIONS(5761), + [anon_sym_LT_EQ] = ACTIONS(5764), + [anon_sym_GT_EQ] = ACTIONS(5764), + [anon_sym_LT_LT] = ACTIONS(5767), + [anon_sym_GT_GT] = ACTIONS(5767), + [anon_sym_PLUS] = ACTIONS(5740), + [anon_sym_DASH] = ACTIONS(5740), + [anon_sym_SLASH] = ACTIONS(5740), + [anon_sym_PERCENT] = ACTIONS(5740), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_DASH_GT] = ACTIONS(3420), [sym_comment] = ACTIONS(119), }, [1048] = { - [anon_sym_RPAREN] = ACTIONS(5788), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(5773), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(5776), + [anon_sym_STAR_EQ] = ACTIONS(5779), + [anon_sym_SLASH_EQ] = ACTIONS(5779), + [anon_sym_PERCENT_EQ] = ACTIONS(5779), + [anon_sym_PLUS_EQ] = ACTIONS(5779), + [anon_sym_DASH_EQ] = ACTIONS(5779), + [anon_sym_LT_LT_EQ] = ACTIONS(5779), + [anon_sym_GT_GT_EQ] = ACTIONS(5779), + [anon_sym_AMP_EQ] = ACTIONS(5779), + [anon_sym_CARET_EQ] = ACTIONS(5779), + [anon_sym_PIPE_EQ] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5782), + [anon_sym_PIPE_PIPE] = ACTIONS(5785), + [anon_sym_AMP_AMP] = ACTIONS(5785), + [anon_sym_PIPE] = ACTIONS(5782), + [anon_sym_CARET] = ACTIONS(5782), + [anon_sym_EQ_EQ] = ACTIONS(5788), + [anon_sym_BANG_EQ] = ACTIONS(5788), + [anon_sym_LT] = ACTIONS(5791), + [anon_sym_GT] = ACTIONS(5791), + [anon_sym_LT_EQ] = ACTIONS(5794), + [anon_sym_GT_EQ] = ACTIONS(5794), + [anon_sym_LT_LT] = ACTIONS(5797), + [anon_sym_GT_GT] = ACTIONS(5797), + [anon_sym_PLUS] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5770), + [anon_sym_SLASH] = ACTIONS(5770), + [anon_sym_PERCENT] = ACTIONS(5770), + [anon_sym_DASH_DASH] = ACTIONS(3585), + [anon_sym_PLUS_PLUS] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3588), [sym_comment] = ACTIONS(119), }, [1049] = { - [sym__expression] = STATE(1050), + [anon_sym_RPAREN] = ACTIONS(5800), + [sym_comment] = ACTIONS(119), + }, + [1050] = { + [sym__expression] = STATE(1051), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -47098,360 +47182,360 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [1050] = { - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(5790), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(5793), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_STAR_EQ] = ACTIONS(5799), - [anon_sym_SLASH_EQ] = ACTIONS(5799), - [anon_sym_PERCENT_EQ] = ACTIONS(5799), - [anon_sym_PLUS_EQ] = ACTIONS(5799), - [anon_sym_DASH_EQ] = ACTIONS(5799), - [anon_sym_LT_LT_EQ] = ACTIONS(5799), - [anon_sym_GT_GT_EQ] = ACTIONS(5799), - [anon_sym_AMP_EQ] = ACTIONS(5799), - [anon_sym_CARET_EQ] = ACTIONS(5799), - [anon_sym_PIPE_EQ] = ACTIONS(5799), - [anon_sym_AMP] = ACTIONS(5802), - [anon_sym_PIPE_PIPE] = ACTIONS(5805), - [anon_sym_AMP_AMP] = ACTIONS(5805), - [anon_sym_PIPE] = ACTIONS(5802), - [anon_sym_CARET] = ACTIONS(5802), - [anon_sym_EQ_EQ] = ACTIONS(5808), - [anon_sym_BANG_EQ] = ACTIONS(5808), - [anon_sym_LT] = ACTIONS(5811), - [anon_sym_GT] = ACTIONS(5811), - [anon_sym_LT_EQ] = ACTIONS(5814), - [anon_sym_GT_EQ] = ACTIONS(5814), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_PLUS] = ACTIONS(5790), - [anon_sym_DASH] = ACTIONS(5790), - [anon_sym_SLASH] = ACTIONS(5790), - [anon_sym_PERCENT] = ACTIONS(5790), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3366), - [anon_sym_DASH_GT] = ACTIONS(3366), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [1051] = { - [anon_sym_LPAREN] = ACTIONS(3846), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(5820), - [anon_sym_LBRACK] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(5823), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(5826), - [anon_sym_STAR_EQ] = ACTIONS(5829), - [anon_sym_SLASH_EQ] = ACTIONS(5829), - [anon_sym_PERCENT_EQ] = ACTIONS(5829), - [anon_sym_PLUS_EQ] = ACTIONS(5829), - [anon_sym_DASH_EQ] = ACTIONS(5829), - [anon_sym_LT_LT_EQ] = ACTIONS(5829), - [anon_sym_GT_GT_EQ] = ACTIONS(5829), - [anon_sym_AMP_EQ] = ACTIONS(5829), - [anon_sym_CARET_EQ] = ACTIONS(5829), - [anon_sym_PIPE_EQ] = ACTIONS(5829), - [anon_sym_AMP] = ACTIONS(5832), - [anon_sym_PIPE_PIPE] = ACTIONS(5835), - [anon_sym_AMP_AMP] = ACTIONS(5835), - [anon_sym_PIPE] = ACTIONS(5832), - [anon_sym_CARET] = ACTIONS(5832), - [anon_sym_EQ_EQ] = ACTIONS(5838), - [anon_sym_BANG_EQ] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5841), - [anon_sym_GT] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5844), - [anon_sym_GT_EQ] = ACTIONS(5844), - [anon_sym_LT_LT] = ACTIONS(5847), - [anon_sym_GT_GT] = ACTIONS(5847), - [anon_sym_PLUS] = ACTIONS(5820), - [anon_sym_DASH] = ACTIONS(5820), - [anon_sym_SLASH] = ACTIONS(5820), - [anon_sym_PERCENT] = ACTIONS(5820), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3885), - [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(5808), + [anon_sym_STAR_EQ] = ACTIONS(5811), + [anon_sym_SLASH_EQ] = ACTIONS(5811), + [anon_sym_PERCENT_EQ] = ACTIONS(5811), + [anon_sym_PLUS_EQ] = ACTIONS(5811), + [anon_sym_DASH_EQ] = ACTIONS(5811), + [anon_sym_LT_LT_EQ] = ACTIONS(5811), + [anon_sym_GT_GT_EQ] = ACTIONS(5811), + [anon_sym_AMP_EQ] = ACTIONS(5811), + [anon_sym_CARET_EQ] = ACTIONS(5811), + [anon_sym_PIPE_EQ] = ACTIONS(5811), + [anon_sym_AMP] = ACTIONS(5814), + [anon_sym_PIPE_PIPE] = ACTIONS(5817), + [anon_sym_AMP_AMP] = ACTIONS(5817), + [anon_sym_PIPE] = ACTIONS(5814), + [anon_sym_CARET] = ACTIONS(5814), + [anon_sym_EQ_EQ] = ACTIONS(5820), + [anon_sym_BANG_EQ] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5823), + [anon_sym_GT] = ACTIONS(5823), + [anon_sym_LT_EQ] = ACTIONS(5826), + [anon_sym_GT_EQ] = ACTIONS(5826), + [anon_sym_LT_LT] = ACTIONS(5829), + [anon_sym_GT_GT] = ACTIONS(5829), + [anon_sym_PLUS] = ACTIONS(5802), + [anon_sym_DASH] = ACTIONS(5802), + [anon_sym_SLASH] = ACTIONS(5802), + [anon_sym_PERCENT] = ACTIONS(5802), + [anon_sym_DASH_DASH] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_DASH_GT] = ACTIONS(3378), [sym_comment] = ACTIONS(119), }, [1052] = { - [anon_sym_LPAREN] = ACTIONS(3888), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(5853), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(5856), - [anon_sym_STAR_EQ] = ACTIONS(5859), - [anon_sym_SLASH_EQ] = ACTIONS(5859), - [anon_sym_PERCENT_EQ] = ACTIONS(5859), - [anon_sym_PLUS_EQ] = ACTIONS(5859), - [anon_sym_DASH_EQ] = ACTIONS(5859), - [anon_sym_LT_LT_EQ] = ACTIONS(5859), - [anon_sym_GT_GT_EQ] = ACTIONS(5859), - [anon_sym_AMP_EQ] = ACTIONS(5859), - [anon_sym_CARET_EQ] = ACTIONS(5859), - [anon_sym_PIPE_EQ] = ACTIONS(5859), - [anon_sym_AMP] = ACTIONS(5862), - [anon_sym_PIPE_PIPE] = ACTIONS(5865), - [anon_sym_AMP_AMP] = ACTIONS(5865), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5868), - [anon_sym_BANG_EQ] = ACTIONS(5868), - [anon_sym_LT] = ACTIONS(5871), - [anon_sym_GT] = ACTIONS(5871), - [anon_sym_LT_EQ] = ACTIONS(5874), - [anon_sym_GT_EQ] = ACTIONS(5874), - [anon_sym_LT_LT] = ACTIONS(5877), - [anon_sym_GT_GT] = ACTIONS(5877), - [anon_sym_PLUS] = ACTIONS(5850), - [anon_sym_DASH] = ACTIONS(5850), - [anon_sym_SLASH] = ACTIONS(5850), - [anon_sym_PERCENT] = ACTIONS(5850), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DASH_GT] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3858), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(5838), + [anon_sym_STAR_EQ] = ACTIONS(5841), + [anon_sym_SLASH_EQ] = ACTIONS(5841), + [anon_sym_PERCENT_EQ] = ACTIONS(5841), + [anon_sym_PLUS_EQ] = ACTIONS(5841), + [anon_sym_DASH_EQ] = ACTIONS(5841), + [anon_sym_LT_LT_EQ] = ACTIONS(5841), + [anon_sym_GT_GT_EQ] = ACTIONS(5841), + [anon_sym_AMP_EQ] = ACTIONS(5841), + [anon_sym_CARET_EQ] = ACTIONS(5841), + [anon_sym_PIPE_EQ] = ACTIONS(5841), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym_PIPE_PIPE] = ACTIONS(5847), + [anon_sym_AMP_AMP] = ACTIONS(5847), + [anon_sym_PIPE] = ACTIONS(5844), + [anon_sym_CARET] = ACTIONS(5844), + [anon_sym_EQ_EQ] = ACTIONS(5850), + [anon_sym_BANG_EQ] = ACTIONS(5850), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_LT_LT] = ACTIONS(5859), + [anon_sym_GT_GT] = ACTIONS(5859), + [anon_sym_PLUS] = ACTIONS(5832), + [anon_sym_DASH] = ACTIONS(5832), + [anon_sym_SLASH] = ACTIONS(5832), + [anon_sym_PERCENT] = ACTIONS(5832), + [anon_sym_DASH_DASH] = ACTIONS(3894), + [anon_sym_PLUS_PLUS] = ACTIONS(3894), + [anon_sym_DOT] = ACTIONS(3897), + [anon_sym_DASH_GT] = ACTIONS(3897), [sym_comment] = ACTIONS(119), }, [1053] = { - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(5880), - [anon_sym_LBRACK] = ACTIONS(3936), - [anon_sym_EQ] = ACTIONS(5883), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(5886), - [anon_sym_STAR_EQ] = ACTIONS(5889), - [anon_sym_SLASH_EQ] = ACTIONS(5889), - [anon_sym_PERCENT_EQ] = ACTIONS(5889), - [anon_sym_PLUS_EQ] = ACTIONS(5889), - [anon_sym_DASH_EQ] = ACTIONS(5889), - [anon_sym_LT_LT_EQ] = ACTIONS(5889), - [anon_sym_GT_GT_EQ] = ACTIONS(5889), - [anon_sym_AMP_EQ] = ACTIONS(5889), - [anon_sym_CARET_EQ] = ACTIONS(5889), - [anon_sym_PIPE_EQ] = ACTIONS(5889), - [anon_sym_AMP] = ACTIONS(5892), - [anon_sym_PIPE_PIPE] = ACTIONS(5895), - [anon_sym_AMP_AMP] = ACTIONS(5895), - [anon_sym_PIPE] = ACTIONS(5892), - [anon_sym_CARET] = ACTIONS(5892), - [anon_sym_EQ_EQ] = ACTIONS(5898), - [anon_sym_BANG_EQ] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(5901), - [anon_sym_GT] = ACTIONS(5901), - [anon_sym_LT_EQ] = ACTIONS(5904), - [anon_sym_GT_EQ] = ACTIONS(5904), - [anon_sym_LT_LT] = ACTIONS(5907), - [anon_sym_GT_GT] = ACTIONS(5907), - [anon_sym_PLUS] = ACTIONS(5880), - [anon_sym_DASH] = ACTIONS(5880), - [anon_sym_SLASH] = ACTIONS(5880), - [anon_sym_PERCENT] = ACTIONS(5880), - [anon_sym_DASH_DASH] = ACTIONS(3966), - [anon_sym_PLUS_PLUS] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(3969), - [anon_sym_DASH_GT] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3900), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(5865), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(5868), + [anon_sym_STAR_EQ] = ACTIONS(5871), + [anon_sym_SLASH_EQ] = ACTIONS(5871), + [anon_sym_PERCENT_EQ] = ACTIONS(5871), + [anon_sym_PLUS_EQ] = ACTIONS(5871), + [anon_sym_DASH_EQ] = ACTIONS(5871), + [anon_sym_LT_LT_EQ] = ACTIONS(5871), + [anon_sym_GT_GT_EQ] = ACTIONS(5871), + [anon_sym_AMP_EQ] = ACTIONS(5871), + [anon_sym_CARET_EQ] = ACTIONS(5871), + [anon_sym_PIPE_EQ] = ACTIONS(5871), + [anon_sym_AMP] = ACTIONS(5874), + [anon_sym_PIPE_PIPE] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_CARET] = ACTIONS(5874), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_LT] = ACTIONS(5883), + [anon_sym_GT] = ACTIONS(5883), + [anon_sym_LT_EQ] = ACTIONS(5886), + [anon_sym_GT_EQ] = ACTIONS(5886), + [anon_sym_LT_LT] = ACTIONS(5889), + [anon_sym_GT_GT] = ACTIONS(5889), + [anon_sym_PLUS] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5862), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5862), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_DOT] = ACTIONS(3939), + [anon_sym_DASH_GT] = ACTIONS(3939), [sym_comment] = ACTIONS(119), }, [1054] = { - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(5910), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(5913), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(5916), - [anon_sym_STAR_EQ] = ACTIONS(5919), - [anon_sym_SLASH_EQ] = ACTIONS(5919), - [anon_sym_PERCENT_EQ] = ACTIONS(5919), - [anon_sym_PLUS_EQ] = ACTIONS(5919), - [anon_sym_DASH_EQ] = ACTIONS(5919), - [anon_sym_LT_LT_EQ] = ACTIONS(5919), - [anon_sym_GT_GT_EQ] = ACTIONS(5919), - [anon_sym_AMP_EQ] = ACTIONS(5919), - [anon_sym_CARET_EQ] = ACTIONS(5919), - [anon_sym_PIPE_EQ] = ACTIONS(5919), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_PIPE_PIPE] = ACTIONS(5925), - [anon_sym_AMP_AMP] = ACTIONS(5925), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_CARET] = ACTIONS(5922), - [anon_sym_EQ_EQ] = ACTIONS(5928), - [anon_sym_BANG_EQ] = ACTIONS(5928), - [anon_sym_LT] = ACTIONS(5931), - [anon_sym_GT] = ACTIONS(5931), - [anon_sym_LT_EQ] = ACTIONS(5934), - [anon_sym_GT_EQ] = ACTIONS(5934), - [anon_sym_LT_LT] = ACTIONS(5937), - [anon_sym_GT_GT] = ACTIONS(5937), - [anon_sym_PLUS] = ACTIONS(5910), - [anon_sym_DASH] = ACTIONS(5910), - [anon_sym_SLASH] = ACTIONS(5910), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3450), - [anon_sym_DASH_GT] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(3948), + [anon_sym_EQ] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(5898), + [anon_sym_STAR_EQ] = ACTIONS(5901), + [anon_sym_SLASH_EQ] = ACTIONS(5901), + [anon_sym_PERCENT_EQ] = ACTIONS(5901), + [anon_sym_PLUS_EQ] = ACTIONS(5901), + [anon_sym_DASH_EQ] = ACTIONS(5901), + [anon_sym_LT_LT_EQ] = ACTIONS(5901), + [anon_sym_GT_GT_EQ] = ACTIONS(5901), + [anon_sym_AMP_EQ] = ACTIONS(5901), + [anon_sym_CARET_EQ] = ACTIONS(5901), + [anon_sym_PIPE_EQ] = ACTIONS(5901), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym_PIPE_PIPE] = ACTIONS(5907), + [anon_sym_AMP_AMP] = ACTIONS(5907), + [anon_sym_PIPE] = ACTIONS(5904), + [anon_sym_CARET] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5910), + [anon_sym_BANG_EQ] = ACTIONS(5910), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5916), + [anon_sym_GT_EQ] = ACTIONS(5916), + [anon_sym_LT_LT] = ACTIONS(5919), + [anon_sym_GT_GT] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5892), + [anon_sym_DASH] = ACTIONS(5892), + [anon_sym_SLASH] = ACTIONS(5892), + [anon_sym_PERCENT] = ACTIONS(5892), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_DASH_GT] = ACTIONS(3981), [sym_comment] = ACTIONS(119), }, [1055] = { - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(5943), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(5946), - [anon_sym_STAR_EQ] = ACTIONS(5949), - [anon_sym_SLASH_EQ] = ACTIONS(5949), - [anon_sym_PERCENT_EQ] = ACTIONS(5949), - [anon_sym_PLUS_EQ] = ACTIONS(5949), - [anon_sym_DASH_EQ] = ACTIONS(5949), - [anon_sym_LT_LT_EQ] = ACTIONS(5949), - [anon_sym_GT_GT_EQ] = ACTIONS(5949), - [anon_sym_AMP_EQ] = ACTIONS(5949), - [anon_sym_CARET_EQ] = ACTIONS(5949), - [anon_sym_PIPE_EQ] = ACTIONS(5949), - [anon_sym_AMP] = ACTIONS(5952), - [anon_sym_PIPE_PIPE] = ACTIONS(5955), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE] = ACTIONS(5952), - [anon_sym_CARET] = ACTIONS(5952), - [anon_sym_EQ_EQ] = ACTIONS(5958), - [anon_sym_BANG_EQ] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5961), - [anon_sym_GT] = ACTIONS(5961), - [anon_sym_LT_EQ] = ACTIONS(5964), - [anon_sym_GT_EQ] = ACTIONS(5964), - [anon_sym_LT_LT] = ACTIONS(5967), - [anon_sym_GT_GT] = ACTIONS(5967), - [anon_sym_PLUS] = ACTIONS(5940), - [anon_sym_DASH] = ACTIONS(5940), - [anon_sym_SLASH] = ACTIONS(5940), - [anon_sym_PERCENT] = ACTIONS(5940), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4041), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(5922), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(5928), + [anon_sym_STAR_EQ] = ACTIONS(5931), + [anon_sym_SLASH_EQ] = ACTIONS(5931), + [anon_sym_PERCENT_EQ] = ACTIONS(5931), + [anon_sym_PLUS_EQ] = ACTIONS(5931), + [anon_sym_DASH_EQ] = ACTIONS(5931), + [anon_sym_LT_LT_EQ] = ACTIONS(5931), + [anon_sym_GT_GT_EQ] = ACTIONS(5931), + [anon_sym_AMP_EQ] = ACTIONS(5931), + [anon_sym_CARET_EQ] = ACTIONS(5931), + [anon_sym_PIPE_EQ] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5934), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5934), + [anon_sym_CARET] = ACTIONS(5934), + [anon_sym_EQ_EQ] = ACTIONS(5940), + [anon_sym_BANG_EQ] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_LT_EQ] = ACTIONS(5946), + [anon_sym_GT_EQ] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(5949), + [anon_sym_GT_GT] = ACTIONS(5949), + [anon_sym_PLUS] = ACTIONS(5922), + [anon_sym_DASH] = ACTIONS(5922), + [anon_sym_SLASH] = ACTIONS(5922), + [anon_sym_PERCENT] = ACTIONS(5922), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3462), + [anon_sym_DASH_GT] = ACTIONS(3462), [sym_comment] = ACTIONS(119), }, [1056] = { - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(5970), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_EQ] = ACTIONS(5973), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(5976), - [anon_sym_STAR_EQ] = ACTIONS(5979), - [anon_sym_SLASH_EQ] = ACTIONS(5979), - [anon_sym_PERCENT_EQ] = ACTIONS(5979), - [anon_sym_PLUS_EQ] = ACTIONS(5979), - [anon_sym_DASH_EQ] = ACTIONS(5979), - [anon_sym_LT_LT_EQ] = ACTIONS(5979), - [anon_sym_GT_GT_EQ] = ACTIONS(5979), - [anon_sym_AMP_EQ] = ACTIONS(5979), - [anon_sym_CARET_EQ] = ACTIONS(5979), - [anon_sym_PIPE_EQ] = ACTIONS(5979), - [anon_sym_AMP] = ACTIONS(5982), - [anon_sym_PIPE_PIPE] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5985), - [anon_sym_PIPE] = ACTIONS(5982), - [anon_sym_CARET] = ACTIONS(5982), - [anon_sym_EQ_EQ] = ACTIONS(5988), - [anon_sym_BANG_EQ] = ACTIONS(5988), - [anon_sym_LT] = ACTIONS(5991), - [anon_sym_GT] = ACTIONS(5991), - [anon_sym_LT_EQ] = ACTIONS(5994), - [anon_sym_GT_EQ] = ACTIONS(5994), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_PLUS] = ACTIONS(5970), - [anon_sym_DASH] = ACTIONS(5970), - [anon_sym_SLASH] = ACTIONS(5970), - [anon_sym_PERCENT] = ACTIONS(5970), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_DASH_GT] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(4014), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(5955), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(5958), + [anon_sym_STAR_EQ] = ACTIONS(5961), + [anon_sym_SLASH_EQ] = ACTIONS(5961), + [anon_sym_PERCENT_EQ] = ACTIONS(5961), + [anon_sym_PLUS_EQ] = ACTIONS(5961), + [anon_sym_DASH_EQ] = ACTIONS(5961), + [anon_sym_LT_LT_EQ] = ACTIONS(5961), + [anon_sym_GT_GT_EQ] = ACTIONS(5961), + [anon_sym_AMP_EQ] = ACTIONS(5961), + [anon_sym_CARET_EQ] = ACTIONS(5961), + [anon_sym_PIPE_EQ] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5964), + [anon_sym_PIPE_PIPE] = ACTIONS(5967), + [anon_sym_AMP_AMP] = ACTIONS(5967), + [anon_sym_PIPE] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5970), + [anon_sym_BANG_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5973), + [anon_sym_GT] = ACTIONS(5973), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5979), + [anon_sym_GT_GT] = ACTIONS(5979), + [anon_sym_PLUS] = ACTIONS(5952), + [anon_sym_DASH] = ACTIONS(5952), + [anon_sym_SLASH] = ACTIONS(5952), + [anon_sym_PERCENT] = ACTIONS(5952), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(4053), + [anon_sym_DASH_GT] = ACTIONS(4053), [sym_comment] = ACTIONS(119), }, [1057] = { - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(6000), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(5982), + [anon_sym_LBRACK] = ACTIONS(3471), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_STAR_EQ] = ACTIONS(5991), + [anon_sym_SLASH_EQ] = ACTIONS(5991), + [anon_sym_PERCENT_EQ] = ACTIONS(5991), + [anon_sym_PLUS_EQ] = ACTIONS(5991), + [anon_sym_DASH_EQ] = ACTIONS(5991), + [anon_sym_LT_LT_EQ] = ACTIONS(5991), + [anon_sym_GT_GT_EQ] = ACTIONS(5991), + [anon_sym_AMP_EQ] = ACTIONS(5991), + [anon_sym_CARET_EQ] = ACTIONS(5991), + [anon_sym_PIPE_EQ] = ACTIONS(5991), + [anon_sym_AMP] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5997), + [anon_sym_AMP_AMP] = ACTIONS(5997), + [anon_sym_PIPE] = ACTIONS(5994), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_EQ_EQ] = ACTIONS(6000), + [anon_sym_BANG_EQ] = ACTIONS(6000), + [anon_sym_LT] = ACTIONS(6003), + [anon_sym_GT] = ACTIONS(6003), + [anon_sym_LT_EQ] = ACTIONS(6006), + [anon_sym_GT_EQ] = ACTIONS(6006), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6009), + [anon_sym_PLUS] = ACTIONS(5982), + [anon_sym_DASH] = ACTIONS(5982), + [anon_sym_SLASH] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(5982), + [anon_sym_DASH_DASH] = ACTIONS(3501), + [anon_sym_PLUS_PLUS] = ACTIONS(3501), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_DASH_GT] = ACTIONS(3504), [sym_comment] = ACTIONS(119), }, [1058] = { - [sym__expression] = STATE(1059), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(6012), + [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(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), + [sym_comment] = ACTIONS(119), + }, + [1059] = { + [sym__expression] = STATE(1060), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -47467,65 +47551,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5667), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1791), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(5679), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, - [1059] = { - [anon_sym_LPAREN] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(6005), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(6008), - [anon_sym_STAR_EQ] = ACTIONS(6011), - [anon_sym_SLASH_EQ] = ACTIONS(6011), - [anon_sym_PERCENT_EQ] = ACTIONS(6011), - [anon_sym_PLUS_EQ] = ACTIONS(6011), - [anon_sym_DASH_EQ] = ACTIONS(6011), - [anon_sym_LT_LT_EQ] = ACTIONS(6011), - [anon_sym_GT_GT_EQ] = ACTIONS(6011), - [anon_sym_AMP_EQ] = ACTIONS(6011), - [anon_sym_CARET_EQ] = ACTIONS(6011), - [anon_sym_PIPE_EQ] = ACTIONS(6011), - [anon_sym_AMP] = ACTIONS(6014), - [anon_sym_PIPE_PIPE] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6014), - [anon_sym_CARET] = ACTIONS(6014), - [anon_sym_EQ_EQ] = ACTIONS(6020), - [anon_sym_BANG_EQ] = ACTIONS(6020), - [anon_sym_LT] = ACTIONS(6023), - [anon_sym_GT] = ACTIONS(6023), - [anon_sym_LT_EQ] = ACTIONS(6026), - [anon_sym_GT_EQ] = ACTIONS(6026), - [anon_sym_LT_LT] = ACTIONS(6029), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_PLUS] = ACTIONS(6002), - [anon_sym_DASH] = ACTIONS(6002), - [anon_sym_SLASH] = ACTIONS(6002), - [anon_sym_PERCENT] = ACTIONS(6002), - [anon_sym_DASH_DASH] = ACTIONS(3773), - [anon_sym_PLUS_PLUS] = ACTIONS(3773), - [anon_sym_DOT] = ACTIONS(3776), - [anon_sym_DASH_GT] = ACTIONS(3776), + [1060] = { + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(6014), + [anon_sym_LBRACK] = ACTIONS(3755), + [anon_sym_EQ] = ACTIONS(6017), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_STAR_EQ] = ACTIONS(6023), + [anon_sym_SLASH_EQ] = ACTIONS(6023), + [anon_sym_PERCENT_EQ] = ACTIONS(6023), + [anon_sym_PLUS_EQ] = ACTIONS(6023), + [anon_sym_DASH_EQ] = ACTIONS(6023), + [anon_sym_LT_LT_EQ] = ACTIONS(6023), + [anon_sym_GT_GT_EQ] = ACTIONS(6023), + [anon_sym_AMP_EQ] = ACTIONS(6023), + [anon_sym_CARET_EQ] = ACTIONS(6023), + [anon_sym_PIPE_EQ] = ACTIONS(6023), + [anon_sym_AMP] = ACTIONS(6026), + [anon_sym_PIPE_PIPE] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_PIPE] = ACTIONS(6026), + [anon_sym_CARET] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(6032), + [anon_sym_BANG_EQ] = ACTIONS(6032), + [anon_sym_LT] = ACTIONS(6035), + [anon_sym_GT] = ACTIONS(6035), + [anon_sym_LT_EQ] = ACTIONS(6038), + [anon_sym_GT_EQ] = ACTIONS(6038), + [anon_sym_LT_LT] = ACTIONS(6041), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6014), + [anon_sym_DASH] = ACTIONS(6014), + [anon_sym_SLASH] = ACTIONS(6014), + [anon_sym_PERCENT] = ACTIONS(6014), + [anon_sym_DASH_DASH] = ACTIONS(3785), + [anon_sym_PLUS_PLUS] = ACTIONS(3785), + [anon_sym_DOT] = ACTIONS(3788), + [anon_sym_DASH_GT] = ACTIONS(3788), [sym_comment] = ACTIONS(119), }, - [1060] = { + [1061] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -47548,12 +47632,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(1062), + [sym_type_name] = STATE(1063), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(334), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -47563,68 +47647,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(346), - [sym_comment] = ACTIONS(119), - }, - [1061] = { - [anon_sym_LPAREN] = ACTIONS(4115), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(6038), - [anon_sym_STAR_EQ] = ACTIONS(6041), - [anon_sym_SLASH_EQ] = ACTIONS(6041), - [anon_sym_PERCENT_EQ] = ACTIONS(6041), - [anon_sym_PLUS_EQ] = ACTIONS(6041), - [anon_sym_DASH_EQ] = ACTIONS(6041), - [anon_sym_LT_LT_EQ] = ACTIONS(6041), - [anon_sym_GT_GT_EQ] = ACTIONS(6041), - [anon_sym_AMP_EQ] = ACTIONS(6041), - [anon_sym_CARET_EQ] = ACTIONS(6041), - [anon_sym_PIPE_EQ] = ACTIONS(6041), - [anon_sym_AMP] = ACTIONS(6044), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE] = ACTIONS(6044), - [anon_sym_CARET] = ACTIONS(6044), - [anon_sym_EQ_EQ] = ACTIONS(6050), - [anon_sym_BANG_EQ] = ACTIONS(6050), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_LT_EQ] = ACTIONS(6056), - [anon_sym_GT_EQ] = ACTIONS(6056), - [anon_sym_LT_LT] = ACTIONS(6059), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6032), - [anon_sym_DASH] = ACTIONS(6032), - [anon_sym_SLASH] = ACTIONS(6032), - [anon_sym_PERCENT] = ACTIONS(6032), - [anon_sym_DASH_DASH] = ACTIONS(4151), - [anon_sym_PLUS_PLUS] = ACTIONS(4151), - [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_DASH_GT] = ACTIONS(4154), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(353), [sym_comment] = ACTIONS(119), }, [1062] = { - [anon_sym_RPAREN] = ACTIONS(6062), + [anon_sym_LPAREN] = ACTIONS(4127), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(6044), + [anon_sym_LBRACK] = ACTIONS(4133), + [anon_sym_EQ] = ACTIONS(6047), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(6050), + [anon_sym_STAR_EQ] = ACTIONS(6053), + [anon_sym_SLASH_EQ] = ACTIONS(6053), + [anon_sym_PERCENT_EQ] = ACTIONS(6053), + [anon_sym_PLUS_EQ] = ACTIONS(6053), + [anon_sym_DASH_EQ] = ACTIONS(6053), + [anon_sym_LT_LT_EQ] = ACTIONS(6053), + [anon_sym_GT_GT_EQ] = ACTIONS(6053), + [anon_sym_AMP_EQ] = ACTIONS(6053), + [anon_sym_CARET_EQ] = ACTIONS(6053), + [anon_sym_PIPE_EQ] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6056), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6062), + [anon_sym_BANG_EQ] = ACTIONS(6062), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6068), + [anon_sym_GT_EQ] = ACTIONS(6068), + [anon_sym_LT_LT] = ACTIONS(6071), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6044), + [anon_sym_DASH] = ACTIONS(6044), + [anon_sym_SLASH] = ACTIONS(6044), + [anon_sym_PERCENT] = ACTIONS(6044), + [anon_sym_DASH_DASH] = ACTIONS(4163), + [anon_sym_PLUS_PLUS] = ACTIONS(4163), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), [sym_comment] = ACTIONS(119), }, [1063] = { - [sym__expression] = STATE(1050), + [anon_sym_RPAREN] = ACTIONS(6074), + [sym_comment] = ACTIONS(119), + }, + [1064] = { + [sym__expression] = STATE(1051), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -47640,228 +47724,228 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(6064), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(6067), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(6070), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(6072), - [anon_sym_DASH] = ACTIONS(6072), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(6075), - [anon_sym_PLUS_PLUS] = ACTIONS(6075), - [anon_sym_sizeof] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(119), - }, - [1064] = { - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(6078), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(6081), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(6084), - [anon_sym_STAR_EQ] = ACTIONS(6087), - [anon_sym_SLASH_EQ] = ACTIONS(6087), - [anon_sym_PERCENT_EQ] = ACTIONS(6087), - [anon_sym_PLUS_EQ] = ACTIONS(6087), - [anon_sym_DASH_EQ] = ACTIONS(6087), - [anon_sym_LT_LT_EQ] = ACTIONS(6087), - [anon_sym_GT_GT_EQ] = ACTIONS(6087), - [anon_sym_AMP_EQ] = ACTIONS(6087), - [anon_sym_CARET_EQ] = ACTIONS(6087), - [anon_sym_PIPE_EQ] = ACTIONS(6087), - [anon_sym_AMP] = ACTIONS(6090), - [anon_sym_PIPE_PIPE] = ACTIONS(6093), - [anon_sym_AMP_AMP] = ACTIONS(6093), - [anon_sym_PIPE] = ACTIONS(6090), - [anon_sym_CARET] = ACTIONS(6090), - [anon_sym_EQ_EQ] = ACTIONS(6096), - [anon_sym_BANG_EQ] = ACTIONS(6096), - [anon_sym_LT] = ACTIONS(6099), - [anon_sym_GT] = ACTIONS(6099), - [anon_sym_LT_EQ] = ACTIONS(6102), - [anon_sym_GT_EQ] = ACTIONS(6102), - [anon_sym_LT_LT] = ACTIONS(6105), - [anon_sym_GT_GT] = ACTIONS(6105), - [anon_sym_PLUS] = ACTIONS(6078), - [anon_sym_DASH] = ACTIONS(6078), - [anon_sym_SLASH] = ACTIONS(6078), - [anon_sym_PERCENT] = ACTIONS(6078), - [anon_sym_DASH_DASH] = ACTIONS(3531), - [anon_sym_PLUS_PLUS] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_DASH_GT] = ACTIONS(3534), + [sym_initializer_list] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(6076), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(6079), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [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(6079), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(6082), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(6084), + [anon_sym_DASH] = ACTIONS(6084), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(6087), + [anon_sym_PLUS_PLUS] = ACTIONS(6087), + [anon_sym_sizeof] = ACTIONS(1800), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(119), }, [1065] = { - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_COMMA] = ACTIONS(1022), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_STAR] = ACTIONS(6108), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_QMARK] = ACTIONS(6114), - [anon_sym_STAR_EQ] = ACTIONS(6117), - [anon_sym_SLASH_EQ] = ACTIONS(6117), - [anon_sym_PERCENT_EQ] = ACTIONS(6117), - [anon_sym_PLUS_EQ] = ACTIONS(6117), - [anon_sym_DASH_EQ] = ACTIONS(6117), - [anon_sym_LT_LT_EQ] = ACTIONS(6117), - [anon_sym_GT_GT_EQ] = ACTIONS(6117), - [anon_sym_AMP_EQ] = ACTIONS(6117), - [anon_sym_CARET_EQ] = ACTIONS(6117), - [anon_sym_PIPE_EQ] = ACTIONS(6117), - [anon_sym_AMP] = ACTIONS(6120), - [anon_sym_PIPE_PIPE] = ACTIONS(6123), - [anon_sym_AMP_AMP] = ACTIONS(6123), - [anon_sym_PIPE] = ACTIONS(6120), - [anon_sym_CARET] = ACTIONS(6120), - [anon_sym_EQ_EQ] = ACTIONS(6126), - [anon_sym_BANG_EQ] = ACTIONS(6126), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_LT_EQ] = ACTIONS(6132), - [anon_sym_GT_EQ] = ACTIONS(6132), - [anon_sym_LT_LT] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6108), - [anon_sym_DASH] = ACTIONS(6108), - [anon_sym_SLASH] = ACTIONS(6108), - [anon_sym_PERCENT] = ACTIONS(6108), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_PLUS_PLUS] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_DASH_GT] = ACTIONS(4272), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(6090), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(6093), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(6096), + [anon_sym_STAR_EQ] = ACTIONS(6099), + [anon_sym_SLASH_EQ] = ACTIONS(6099), + [anon_sym_PERCENT_EQ] = ACTIONS(6099), + [anon_sym_PLUS_EQ] = ACTIONS(6099), + [anon_sym_DASH_EQ] = ACTIONS(6099), + [anon_sym_LT_LT_EQ] = ACTIONS(6099), + [anon_sym_GT_GT_EQ] = ACTIONS(6099), + [anon_sym_AMP_EQ] = ACTIONS(6099), + [anon_sym_CARET_EQ] = ACTIONS(6099), + [anon_sym_PIPE_EQ] = ACTIONS(6099), + [anon_sym_AMP] = ACTIONS(6102), + [anon_sym_PIPE_PIPE] = ACTIONS(6105), + [anon_sym_AMP_AMP] = ACTIONS(6105), + [anon_sym_PIPE] = ACTIONS(6102), + [anon_sym_CARET] = ACTIONS(6102), + [anon_sym_EQ_EQ] = ACTIONS(6108), + [anon_sym_BANG_EQ] = ACTIONS(6108), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6114), + [anon_sym_GT_EQ] = ACTIONS(6114), + [anon_sym_LT_LT] = ACTIONS(6117), + [anon_sym_GT_GT] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6090), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_DOT] = ACTIONS(3546), + [anon_sym_DASH_GT] = ACTIONS(3546), [sym_comment] = ACTIONS(119), }, [1066] = { - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_EQ] = ACTIONS(6141), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(6144), - [anon_sym_STAR_EQ] = ACTIONS(6147), - [anon_sym_SLASH_EQ] = ACTIONS(6147), - [anon_sym_PERCENT_EQ] = ACTIONS(6147), - [anon_sym_PLUS_EQ] = ACTIONS(6147), - [anon_sym_DASH_EQ] = ACTIONS(6147), - [anon_sym_LT_LT_EQ] = ACTIONS(6147), - [anon_sym_GT_GT_EQ] = ACTIONS(6147), - [anon_sym_AMP_EQ] = ACTIONS(6147), - [anon_sym_CARET_EQ] = ACTIONS(6147), - [anon_sym_PIPE_EQ] = ACTIONS(6147), - [anon_sym_AMP] = ACTIONS(6150), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_AMP_AMP] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6150), - [anon_sym_CARET] = ACTIONS(6150), - [anon_sym_EQ_EQ] = ACTIONS(6156), - [anon_sym_BANG_EQ] = ACTIONS(6156), - [anon_sym_LT] = ACTIONS(6159), - [anon_sym_GT] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6162), - [anon_sym_GT_EQ] = ACTIONS(6162), - [anon_sym_LT_LT] = ACTIONS(6165), - [anon_sym_GT_GT] = ACTIONS(6165), - [anon_sym_PLUS] = ACTIONS(6138), - [anon_sym_DASH] = ACTIONS(6138), - [anon_sym_SLASH] = ACTIONS(6138), - [anon_sym_PERCENT] = ACTIONS(6138), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(6120), + [anon_sym_LBRACK] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6123), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(6126), + [anon_sym_STAR_EQ] = ACTIONS(6129), + [anon_sym_SLASH_EQ] = ACTIONS(6129), + [anon_sym_PERCENT_EQ] = ACTIONS(6129), + [anon_sym_PLUS_EQ] = ACTIONS(6129), + [anon_sym_DASH_EQ] = ACTIONS(6129), + [anon_sym_LT_LT_EQ] = ACTIONS(6129), + [anon_sym_GT_GT_EQ] = ACTIONS(6129), + [anon_sym_AMP_EQ] = ACTIONS(6129), + [anon_sym_CARET_EQ] = ACTIONS(6129), + [anon_sym_PIPE_EQ] = ACTIONS(6129), + [anon_sym_AMP] = ACTIONS(6132), + [anon_sym_PIPE_PIPE] = ACTIONS(6135), + [anon_sym_AMP_AMP] = ACTIONS(6135), + [anon_sym_PIPE] = ACTIONS(6132), + [anon_sym_CARET] = ACTIONS(6132), + [anon_sym_EQ_EQ] = ACTIONS(6138), + [anon_sym_BANG_EQ] = ACTIONS(6138), + [anon_sym_LT] = ACTIONS(6141), + [anon_sym_GT] = ACTIONS(6141), + [anon_sym_LT_EQ] = ACTIONS(6144), + [anon_sym_GT_EQ] = ACTIONS(6144), + [anon_sym_LT_LT] = ACTIONS(6147), + [anon_sym_GT_GT] = ACTIONS(6147), + [anon_sym_PLUS] = ACTIONS(6120), + [anon_sym_DASH] = ACTIONS(6120), + [anon_sym_SLASH] = ACTIONS(6120), + [anon_sym_PERCENT] = ACTIONS(6120), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(4284), [sym_comment] = ACTIONS(119), }, [1067] = { - [anon_sym_LPAREN] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_EQ] = ACTIONS(5491), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(256), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(4287), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(6150), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_EQ] = ACTIONS(6153), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(6156), + [anon_sym_STAR_EQ] = ACTIONS(6159), + [anon_sym_SLASH_EQ] = ACTIONS(6159), + [anon_sym_PERCENT_EQ] = ACTIONS(6159), + [anon_sym_PLUS_EQ] = ACTIONS(6159), + [anon_sym_DASH_EQ] = ACTIONS(6159), + [anon_sym_LT_LT_EQ] = ACTIONS(6159), + [anon_sym_GT_GT_EQ] = ACTIONS(6159), + [anon_sym_AMP_EQ] = ACTIONS(6159), + [anon_sym_CARET_EQ] = ACTIONS(6159), + [anon_sym_PIPE_EQ] = ACTIONS(6159), + [anon_sym_AMP] = ACTIONS(6162), + [anon_sym_PIPE_PIPE] = ACTIONS(6165), + [anon_sym_AMP_AMP] = ACTIONS(6165), + [anon_sym_PIPE] = ACTIONS(6162), + [anon_sym_CARET] = ACTIONS(6162), + [anon_sym_EQ_EQ] = ACTIONS(6168), + [anon_sym_BANG_EQ] = ACTIONS(6168), + [anon_sym_LT] = ACTIONS(6171), + [anon_sym_GT] = ACTIONS(6171), + [anon_sym_LT_EQ] = ACTIONS(6174), + [anon_sym_GT_EQ] = ACTIONS(6174), + [anon_sym_LT_LT] = ACTIONS(6177), + [anon_sym_GT_GT] = ACTIONS(6177), + [anon_sym_PLUS] = ACTIONS(6150), + [anon_sym_DASH] = ACTIONS(6150), + [anon_sym_SLASH] = ACTIONS(6150), + [anon_sym_PERCENT] = ACTIONS(6150), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4326), [sym_comment] = ACTIONS(119), }, [1068] = { - [sym__declarator] = STATE(262), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_EQ] = ACTIONS(5503), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(263), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_comment] = ACTIONS(119), + }, + [1069] = { + [sym__declarator] = STATE(263), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), @@ -47887,12 +47971,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(466), + [sym_type_name] = STATE(467), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_STAR] = ACTIONS(5650), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5662), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -47902,26 +47986,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5486), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5498), [sym_comment] = ACTIONS(119), }, - [1069] = { - [sym__declarator] = STATE(259), + [1070] = { + [sym__declarator] = STATE(260), [sym_pointer_declarator] = STATE(30), [sym_function_declarator] = STATE(30), [sym_array_declarator] = STATE(30), - [sym__expression] = STATE(417), + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -47937,36 +48021,36 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_STAR] = ACTIONS(5650), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5556), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5662), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(119), }, - [1070] = { - [sym__declaration_specifiers] = STATE(226), + [1071] = { + [sym__declaration_specifiers] = STATE(227), [sym_storage_class_specifier] = STATE(8), [sym_type_qualifier] = STATE(8), - [sym__type_specifier] = STATE(227), + [sym__type_specifier] = STATE(228), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), [sym_union_specifier] = STATE(19), - [sym_parameter_declaration] = STATE(233), + [sym_parameter_declaration] = STATE(234), [sym_macro_type_specifier] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(21), [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6180), [anon_sym_static] = ACTIONS(131), [anon_sym_typedef] = ACTIONS(131), [anon_sym_extern] = ACTIONS(131), @@ -47982,32 +48066,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [sym_identifier] = ACTIONS(6170), - [sym_comment] = ACTIONS(119), - }, - [1071] = { - [anon_sym_COMMA] = ACTIONS(6172), - [anon_sym_RPAREN] = ACTIONS(6172), + [sym_identifier] = ACTIONS(6182), [sym_comment] = ACTIONS(119), }, [1072] = { - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(188), - [anon_sym_LBRACK] = ACTIONS(188), - [sym_identifier] = ACTIONS(190), + [anon_sym_COMMA] = ACTIONS(6184), + [anon_sym_RPAREN] = ACTIONS(6184), [sym_comment] = ACTIONS(119), }, [1073] = { - [sym__declarator] = STATE(262), - [sym__abstract_declarator] = STATE(263), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(190), + [sym_identifier] = ACTIONS(192), + [sym_comment] = ACTIONS(119), + }, + [1074] = { + [sym__declarator] = STATE(263), + [sym__abstract_declarator] = STATE(264), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), + [sym_abstract_array_declarator] = STATE(211), [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(19), @@ -48030,13 +48114,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [sym_type_name] = STATE(889), + [sym_type_name] = STATE(890), [sym_macro_type_specifier] = STATE(19), [aux_sym_array_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(22), - [anon_sym_LPAREN] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(638), + [aux_sym_sized_type_specifier_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(645), [anon_sym_const] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), @@ -48046,85 +48130,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(139), [anon_sym_struct] = ACTIONS(141), [anon_sym_union] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(344), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5486), - [sym_comment] = ACTIONS(119), - }, - [1074] = { - [aux_sym_preproc_params_repeat1] = STATE(742), - [aux_sym_parameter_type_list_repeat1] = STATE(230), - [anon_sym_COMMA] = ACTIONS(6178), - [anon_sym_RPAREN] = ACTIONS(6180), + [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(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5498), [sym_comment] = ACTIONS(119), }, [1075] = { - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [sym_preproc_arg] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(6190), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(6187), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_DASH_DASH] = ACTIONS(554), - [anon_sym_PLUS_PLUS] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), + [aux_sym_preproc_params_repeat1] = STATE(743), + [aux_sym_parameter_type_list_repeat1] = STATE(231), + [anon_sym_COMMA] = ACTIONS(6190), + [anon_sym_RPAREN] = ACTIONS(6192), [sym_comment] = ACTIONS(119), }, [1076] = { - [sym__declarator] = STATE(259), - [sym__abstract_declarator] = STATE(260), + [anon_sym_LF] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(6195), + [anon_sym_COMMA] = ACTIONS(6195), + [anon_sym_RPAREN] = ACTIONS(6195), + [sym_preproc_arg] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(6199), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(6195), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(6202), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(6199), + [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_comment] = ACTIONS(119), + }, + [1077] = { + [sym__declarator] = STATE(260), + [sym__abstract_declarator] = STATE(261), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym__expression] = STATE(887), + [sym_abstract_array_declarator] = STATE(211), + [sym__expression] = STATE(888), [sym_conditional_expression] = STATE(51), [sym_assignment_expression] = STATE(51), [sym_pointer_expression] = STATE(51), @@ -48140,70 +48224,70 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_call_expression] = STATE(51), [sym_field_expression] = STATE(51), [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(6193), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(312), - [sym_char_literal] = ACTIONS(312), - [sym_string_literal] = ACTIONS(312), - [sym_identifier] = ACTIONS(5556), + [anon_sym_LPAREN] = ACTIONS(6205), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1765), + [sym_number_literal] = ACTIONS(319), + [sym_char_literal] = ACTIONS(319), + [sym_string_literal] = ACTIONS(319), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(119), }, - [1077] = { - [aux_sym_preproc_params_repeat1] = STATE(742), - [anon_sym_LPAREN] = ACTIONS(5558), - [anon_sym_COMMA] = ACTIONS(6196), - [anon_sym_RPAREN] = ACTIONS(6200), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [sym_identifier] = ACTIONS(190), + [1078] = { + [aux_sym_preproc_params_repeat1] = STATE(743), + [anon_sym_LPAREN] = ACTIONS(5570), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_RPAREN] = ACTIONS(6212), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(5575), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_DASH_DASH] = ACTIONS(379), + [anon_sym_PLUS_PLUS] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(379), + [sym_identifier] = ACTIONS(192), [sym_comment] = ACTIONS(119), }, - [1078] = { - [sym__type_specifier] = STATE(1086), + [1079] = { + [sym__type_specifier] = STATE(1087), [sym_sized_type_specifier] = STATE(19), [sym_enum_specifier] = STATE(19), [sym_struct_specifier] = STATE(19), @@ -48219,284 +48303,284 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(119), }, - [1079] = { - [sym__declarator] = STATE(1084), - [sym__abstract_declarator] = STATE(1085), + [1080] = { + [sym__declarator] = STATE(1085), + [sym__abstract_declarator] = STATE(1086), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), + [sym_abstract_array_declarator] = STATE(211), [sym_init_declarator] = STATE(32), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_STAR] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), - [sym_comment] = ACTIONS(119), - }, - [1080] = { - [aux_sym_for_statement_repeat1] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(3787), - [anon_sym_QMARK] = ACTIONS(3789), - [anon_sym_STAR_EQ] = ACTIONS(3791), - [anon_sym_SLASH_EQ] = ACTIONS(3791), - [anon_sym_PERCENT_EQ] = ACTIONS(3791), - [anon_sym_PLUS_EQ] = ACTIONS(3791), - [anon_sym_DASH_EQ] = ACTIONS(3791), - [anon_sym_LT_LT_EQ] = ACTIONS(3791), - [anon_sym_GT_GT_EQ] = ACTIONS(3791), - [anon_sym_AMP_EQ] = ACTIONS(3791), - [anon_sym_CARET_EQ] = ACTIONS(3791), - [anon_sym_PIPE_EQ] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3797), - [anon_sym_BANG_EQ] = ACTIONS(3797), - [anon_sym_LT] = ACTIONS(3799), - [anon_sym_GT] = ACTIONS(3799), - [anon_sym_LT_EQ] = ACTIONS(3801), - [anon_sym_GT_EQ] = ACTIONS(3801), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3785), - [anon_sym_DASH] = ACTIONS(3785), - [anon_sym_SLASH] = ACTIONS(3785), - [anon_sym_PERCENT] = ACTIONS(3785), - [anon_sym_DASH_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(6217), + [anon_sym_STAR] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, [1081] = { - [sym_compound_statement] = STATE(508), - [sym__statement] = STATE(1082), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym__expression] = STATE(510), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_pointer_expression] = STATE(51), - [sym_logical_expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_subscript_expression] = STATE(51), - [sym_call_expression] = STATE(51), - [sym_field_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_COMMA] = ACTIONS(3586), - [anon_sym_RPAREN] = ACTIONS(3586), - [anon_sym_SEMI] = ACTIONS(3589), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3599), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [sym_function_specifier] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_STAR_EQ] = ACTIONS(3586), - [anon_sym_SLASH_EQ] = ACTIONS(3586), - [anon_sym_PERCENT_EQ] = ACTIONS(3586), - [anon_sym_PLUS_EQ] = ACTIONS(3586), - [anon_sym_DASH_EQ] = ACTIONS(3586), - [anon_sym_LT_LT_EQ] = ACTIONS(3586), - [anon_sym_GT_GT_EQ] = ACTIONS(3586), - [anon_sym_AMP_EQ] = ACTIONS(3586), - [anon_sym_CARET_EQ] = ACTIONS(3586), - [anon_sym_PIPE_EQ] = ACTIONS(3586), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_PIPE] = ACTIONS(3599), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3599), - [anon_sym_GT] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3586), - [anon_sym_GT_EQ] = ACTIONS(3586), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_PLUS] = ACTIONS(3615), - [anon_sym_DASH] = ACTIONS(3615), - [anon_sym_SLASH] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3625), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_DASH_GT] = ACTIONS(3586), - [sym_number_literal] = ACTIONS(1964), - [sym_char_literal] = ACTIONS(1964), - [sym_string_literal] = ACTIONS(1964), - [sym_identifier] = ACTIONS(3628), + [aux_sym_for_statement_repeat1] = STATE(172), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(6223), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(3799), + [anon_sym_QMARK] = ACTIONS(3801), + [anon_sym_STAR_EQ] = ACTIONS(3803), + [anon_sym_SLASH_EQ] = ACTIONS(3803), + [anon_sym_PERCENT_EQ] = ACTIONS(3803), + [anon_sym_PLUS_EQ] = ACTIONS(3803), + [anon_sym_DASH_EQ] = ACTIONS(3803), + [anon_sym_LT_LT_EQ] = ACTIONS(3803), + [anon_sym_GT_GT_EQ] = ACTIONS(3803), + [anon_sym_AMP_EQ] = ACTIONS(3803), + [anon_sym_CARET_EQ] = ACTIONS(3803), + [anon_sym_PIPE_EQ] = ACTIONS(3803), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_PIPE_PIPE] = ACTIONS(3807), + [anon_sym_AMP_AMP] = ACTIONS(3807), + [anon_sym_PIPE] = ACTIONS(3805), + [anon_sym_CARET] = ACTIONS(3805), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(3811), + [anon_sym_GT] = ACTIONS(3811), + [anon_sym_LT_EQ] = ACTIONS(3813), + [anon_sym_GT_EQ] = ACTIONS(3813), + [anon_sym_LT_LT] = ACTIONS(3815), + [anon_sym_GT_GT] = ACTIONS(3815), + [anon_sym_PLUS] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_SLASH] = ACTIONS(3797), + [anon_sym_PERCENT] = ACTIONS(3797), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(419), [sym_comment] = ACTIONS(119), }, [1082] = { - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_SEMI] = ACTIONS(6213), - [anon_sym_STAR] = ACTIONS(6213), - [anon_sym_static] = ACTIONS(6217), - [anon_sym_LBRACE] = ACTIONS(6213), - [anon_sym_RBRACE] = ACTIONS(6213), - [anon_sym_typedef] = ACTIONS(6217), - [anon_sym_extern] = ACTIONS(6217), - [anon_sym_auto] = ACTIONS(6217), - [anon_sym_register] = ACTIONS(6217), - [anon_sym_const] = ACTIONS(6217), - [anon_sym_restrict] = ACTIONS(6217), - [anon_sym_volatile] = ACTIONS(6217), - [sym_function_specifier] = ACTIONS(6217), - [anon_sym_unsigned] = ACTIONS(6217), - [anon_sym_long] = ACTIONS(6217), - [anon_sym_short] = ACTIONS(6217), - [anon_sym_enum] = ACTIONS(6217), - [anon_sym_struct] = ACTIONS(6217), - [anon_sym_union] = ACTIONS(6217), - [anon_sym_if] = ACTIONS(6217), - [anon_sym_else] = ACTIONS(6221), - [anon_sym_switch] = ACTIONS(6217), - [anon_sym_case] = ACTIONS(6217), - [anon_sym_default] = ACTIONS(6217), - [anon_sym_while] = ACTIONS(6217), - [anon_sym_do] = ACTIONS(6217), - [anon_sym_for] = ACTIONS(6217), - [anon_sym_return] = ACTIONS(6217), - [anon_sym_break] = ACTIONS(6217), - [anon_sym_continue] = ACTIONS(6217), - [anon_sym_goto] = ACTIONS(6217), - [anon_sym_AMP] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_TILDE] = ACTIONS(6213), - [anon_sym_PLUS] = ACTIONS(6217), - [anon_sym_DASH] = ACTIONS(6217), - [anon_sym_DASH_DASH] = ACTIONS(6213), - [anon_sym_PLUS_PLUS] = ACTIONS(6213), - [anon_sym_sizeof] = ACTIONS(6217), - [sym_number_literal] = ACTIONS(6217), - [sym_char_literal] = ACTIONS(6217), - [sym_string_literal] = ACTIONS(6217), - [sym_identifier] = ACTIONS(6226), + [sym_compound_statement] = STATE(509), + [sym__statement] = STATE(1083), + [sym_labeled_statement] = STATE(509), + [sym_expression_statement] = STATE(509), + [sym_if_statement] = STATE(509), + [sym_switch_statement] = STATE(509), + [sym_case_statement] = STATE(509), + [sym_while_statement] = STATE(509), + [sym_do_statement] = STATE(509), + [sym_for_statement] = STATE(509), + [sym_return_statement] = STATE(509), + [sym_break_statement] = STATE(509), + [sym_continue_statement] = STATE(509), + [sym_goto_statement] = STATE(509), + [sym__expression] = STATE(511), + [sym_conditional_expression] = STATE(51), + [sym_assignment_expression] = STATE(51), + [sym_pointer_expression] = STATE(51), + [sym_logical_expression] = STATE(51), + [sym_bitwise_expression] = STATE(51), + [sym_equality_expression] = STATE(51), + [sym_relational_expression] = STATE(51), + [sym_shift_expression] = STATE(51), + [sym_math_expression] = STATE(51), + [sym_cast_expression] = STATE(51), + [sym_sizeof_expression] = STATE(51), + [sym_subscript_expression] = STATE(51), + [sym_call_expression] = STATE(51), + [sym_field_expression] = STATE(51), + [sym_compound_literal_expression] = STATE(51), + [anon_sym_LPAREN] = ACTIONS(3593), + [anon_sym_COMMA] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3611), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3617), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [sym_function_specifier] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_STAR_EQ] = ACTIONS(3598), + [anon_sym_SLASH_EQ] = ACTIONS(3598), + [anon_sym_PERCENT_EQ] = ACTIONS(3598), + [anon_sym_PLUS_EQ] = ACTIONS(3598), + [anon_sym_DASH_EQ] = ACTIONS(3598), + [anon_sym_LT_LT_EQ] = ACTIONS(3598), + [anon_sym_GT_GT_EQ] = ACTIONS(3598), + [anon_sym_AMP_EQ] = ACTIONS(3598), + [anon_sym_CARET_EQ] = ACTIONS(3598), + [anon_sym_PIPE_EQ] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_PIPE] = ACTIONS(3611), + [anon_sym_CARET] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_EQ_EQ] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_LT] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3598), + [anon_sym_GT_EQ] = ACTIONS(3598), + [anon_sym_LT_LT] = ACTIONS(3611), + [anon_sym_GT_GT] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_SLASH] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_DASH_GT] = ACTIONS(3598), + [sym_number_literal] = ACTIONS(1973), + [sym_char_literal] = ACTIONS(1973), + [sym_string_literal] = ACTIONS(1973), + [sym_identifier] = ACTIONS(3640), [sym_comment] = ACTIONS(119), }, [1083] = { - [sym__declarator] = STATE(911), - [sym__abstract_declarator] = STATE(260), + [anon_sym_LPAREN] = ACTIONS(6225), + [anon_sym_SEMI] = ACTIONS(6225), + [anon_sym_STAR] = ACTIONS(6225), + [anon_sym_static] = ACTIONS(6229), + [anon_sym_LBRACE] = ACTIONS(6225), + [anon_sym_RBRACE] = ACTIONS(6225), + [anon_sym_typedef] = ACTIONS(6229), + [anon_sym_extern] = ACTIONS(6229), + [anon_sym_auto] = ACTIONS(6229), + [anon_sym_register] = ACTIONS(6229), + [anon_sym_const] = ACTIONS(6229), + [anon_sym_restrict] = ACTIONS(6229), + [anon_sym_volatile] = ACTIONS(6229), + [sym_function_specifier] = ACTIONS(6229), + [anon_sym_unsigned] = ACTIONS(6229), + [anon_sym_long] = ACTIONS(6229), + [anon_sym_short] = ACTIONS(6229), + [anon_sym_enum] = ACTIONS(6229), + [anon_sym_struct] = ACTIONS(6229), + [anon_sym_union] = ACTIONS(6229), + [anon_sym_if] = ACTIONS(6229), + [anon_sym_else] = ACTIONS(6233), + [anon_sym_switch] = ACTIONS(6229), + [anon_sym_case] = ACTIONS(6229), + [anon_sym_default] = ACTIONS(6229), + [anon_sym_while] = ACTIONS(6229), + [anon_sym_do] = ACTIONS(6229), + [anon_sym_for] = ACTIONS(6229), + [anon_sym_return] = ACTIONS(6229), + [anon_sym_break] = ACTIONS(6229), + [anon_sym_continue] = ACTIONS(6229), + [anon_sym_goto] = ACTIONS(6229), + [anon_sym_AMP] = ACTIONS(6225), + [anon_sym_BANG] = ACTIONS(6225), + [anon_sym_TILDE] = ACTIONS(6225), + [anon_sym_PLUS] = ACTIONS(6229), + [anon_sym_DASH] = ACTIONS(6229), + [anon_sym_DASH_DASH] = ACTIONS(6225), + [anon_sym_PLUS_PLUS] = ACTIONS(6225), + [anon_sym_sizeof] = ACTIONS(6229), + [sym_number_literal] = ACTIONS(6229), + [sym_char_literal] = ACTIONS(6229), + [sym_string_literal] = ACTIONS(6229), + [sym_identifier] = ACTIONS(6238), + [sym_comment] = ACTIONS(119), + }, + [1084] = { + [sym__declarator] = STATE(912), + [sym__abstract_declarator] = STATE(261), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(2230), - [sym_identifier] = ACTIONS(212), + [sym_abstract_array_declarator] = STATE(211), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(2239), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(119), }, - [1084] = { + [1085] = { [aux_sym_declaration_repeat1] = STATE(35), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_SEMI] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(6242), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), [sym_comment] = ACTIONS(119), }, - [1085] = { - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(690), + [1086] = { + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(6245), + [anon_sym_LBRACK] = ACTIONS(699), [sym_comment] = ACTIONS(119), }, - [1086] = { - [sym__declarator] = STATE(1087), - [sym__abstract_declarator] = STATE(268), + [1087] = { + [sym__declarator] = STATE(1088), + [sym__abstract_declarator] = STATE(269), [sym_pointer_declarator] = STATE(30), - [sym_abstract_pointer_declarator] = STATE(210), + [sym_abstract_pointer_declarator] = STATE(211), [sym_function_declarator] = STATE(30), - [sym_abstract_function_declarator] = STATE(210), + [sym_abstract_function_declarator] = STATE(211), [sym_array_declarator] = STATE(30), - [sym_abstract_array_declarator] = STATE(210), - [sym_init_declarator] = STATE(519), - [anon_sym_LPAREN] = ACTIONS(722), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_identifier] = ACTIONS(212), - [sym_comment] = ACTIONS(119), - }, - [1087] = { - [aux_sym_declaration_repeat1] = STATE(520), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(4488), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(266), + [sym_abstract_array_declarator] = STATE(211), + [sym_init_declarator] = STATE(520), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(6221), + [anon_sym_LBRACK] = ACTIONS(645), + [sym_identifier] = ACTIONS(214), + [sym_comment] = ACTIONS(119), + }, + [1088] = { + [aux_sym_declaration_repeat1] = STATE(521), + [anon_sym_LPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(273), [sym_comment] = ACTIONS(119), }, }; @@ -48506,62 +48590,62 @@ 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(748), - [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(749), - [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(750), - [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(751), + [7] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(749), + [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(750), + [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(751), + [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(752), [15] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(4), - [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(752), - [19] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(717), + [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(753), + [19] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(718), [21] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(5), - [23] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(753), - [25] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(754), - [27] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(755), - [29] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(756), - [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(757), - [33] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(758), - [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(759), - [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(760), + [23] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(754), + [25] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(755), + [27] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(756), + [29] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(757), + [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(758), + [33] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(759), + [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(760), + [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(761), [39] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(6), [41] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(7), - [43] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(761), - [45] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(762), + [43] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(762), + [45] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(763), [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(10), [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 = false}, RECOVER(763), - [55] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(667), - [57] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(710), - [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(668), - [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(669), - [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(670), - [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(764), - [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(499), - [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(672), - [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(501), - [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(502), - [75] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(503), - [77] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(504), - [79] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(765), - [81] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(766), - [83] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(767), - [85] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(768), - [87] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(769), - [89] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(770), - [91] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(771), - [93] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(772), - [95] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(773), - [97] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(773), - [99] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(774), - [101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(775), - [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(776), - [105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(777), - [107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(778), - [109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(779), + [53] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(764), + [55] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(668), + [57] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(711), + [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(669), + [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(670), + [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(671), + [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(765), + [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(500), + [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(673), + [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(502), + [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(503), + [75] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(504), + [77] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(505), + [79] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(766), + [81] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(767), + [83] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(768), + [85] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(769), + [87] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(770), + [89] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(771), + [91] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(772), + [93] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(773), + [95] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(774), + [97] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(774), + [99] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(775), + [101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(776), + [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(777), + [105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(778), + [107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(779), + [109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(780), [111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(70), [113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(51), - [115] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(780), - [117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(781), + [115] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(781), + [117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(782), [119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), [121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 0), [123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2), @@ -48576,10 +48660,10 @@ static TSParseActionEntry ts_parse_actions[] = { [141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(11), [143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), [145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), - [147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), - [149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(729), - [151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(715), - [153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(714), + [147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(748), + [149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(730), + [151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), + [153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(715), [155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), [157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), [159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), @@ -48587,1995 +48671,2000 @@ static TSParseActionEntry ts_parse_actions[] = { [163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), [165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), [167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [169] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), - [171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), - [173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(446), - [177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [179] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(438), - [181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(274), - [185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(269), - [188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), - [190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), - [192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), - [196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), - [198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), - [200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__preproc_statement, 1), - [202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__preproc_statement, 1), - [204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__preproc_statement, 1), - [206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(27), - [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(28), - [210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(29), - [212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(30), - [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1), - [216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1), - [218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 1), - [220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(25), - [222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 1), - [224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), - [226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(23), - [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(24), - [230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 2), - [236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sized_type_specifier, 2), - [238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), - [252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), - [254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), - [256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), - [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(41), - [260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), - [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(34), - [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(42), - [266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), - [268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(38), - [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), - [274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), - [276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(36), - [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(37), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), - [286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), - [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 3), - [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), - [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), - [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(118), - [298] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(239), - [300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(240), - [302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), - [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), - [306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), - [308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), - [310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), - [312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(51), - [314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(52), - [316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), - [318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(45), - [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), - [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), - [324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), - [326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(49), - [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), - [330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(50), - [332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(192), - [334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), - [336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), - [338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(195), - [340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(196), - [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), - [344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(197), - [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), - [348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), - [350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), - [352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), - [354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), - [356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), - [358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(339), - [360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), - [362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(340), - [364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), - [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), - [370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), - [372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), - [374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), - [376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(55), - [378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), - [380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), - [382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), - [384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(58), - [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), - [388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(58), - [390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), - [392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61), - [394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(62), - [396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), - [398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(64), - [400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(65), - [402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(66), - [404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66), - [406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(67), - [408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(68), - [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), - [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(70), - [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(150), - [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), - [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), - [420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), - [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), - [424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), - [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), - [428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), - [430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), - [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(84), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85), - [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), - [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(87), - [442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(88), - [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), - [446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), - [448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(71), - [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3), - [452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_expression, 3), - [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), - [456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), - [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), - [464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), - [468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), - [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), - [472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), - [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), - [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), - [482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(90), - [484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(91), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(92), - [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), - [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), - [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), - [498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(97), - [500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), - [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), - [504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), - [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(100), - [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(102), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), - [520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125), - [522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(126), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(127), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(126), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(128), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(129), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(131), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(132), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(133), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(134), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(135), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(136), - [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript_expression, 4), - [550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript_expression, 4), - [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(148), - [554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), - [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(190), - [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), - [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), - [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(163), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), - [578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(166), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(168), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(169), - [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), - [588] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(170), - [590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(171), - [592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 4), - [594] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 4), - [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), - [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174), - [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), - [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 3), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), - [616] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(269), - [620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), - [623] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), - [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), - [630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), - [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(206), - [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 1), - [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), - [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), - [640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), - [642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(389), - [644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390), - [646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), - [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), - [650] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(392), - [652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), - [654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(395), - [658] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(396), - [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397), - [662] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), - [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), - [666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), - [668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(400), - [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), - [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), - [674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 2), - [676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), - [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 2), - [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), - [682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(253), - [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), - [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 3), - [690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), - [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), - [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), - [696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(213), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), - [700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(218), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), - [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(220), - [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), - [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), - [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 6), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(229), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), - [720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 3), - [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), - [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), - [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), - [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 2), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), - [738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 4), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), - [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), - [752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(243), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(246), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), - [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 6), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(257), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), - [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), - [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(264), - [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), - [788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(270), - [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(272), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), - [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), - [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), - [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), - [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 4), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 4), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 5), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 5), - [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(284), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), - [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 3), - [844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), - [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), - [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), - [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), - [880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), - [882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(303), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(304), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), - [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(306), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(309), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(311), - [908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(312), - [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), - [912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(313), - [914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314), - [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), - [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 7), - [920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), - [922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), - [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), - [926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), - [928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), - [930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), - [932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), - [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), - [936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), - [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), - [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), - [944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), - [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), - [948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(351), - [950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(352), - [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), - [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352), - [956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(354), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), - [962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(357), - [964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(360), - [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(361), - [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), - [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), - [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), - [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), - [984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), - [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), - [990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), - [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), - [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), - [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), - [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), - [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), - [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), - [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), - [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), - [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), - [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), - [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), - [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), - [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), - [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), - [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), - [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), - [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), - [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 3), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), - [1050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), - [1058] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(448), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), - [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 6), - [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 6), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 3), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(153), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(193), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(194), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(118), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(119), - [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(84), - [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(85), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), - [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(45), - [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(47), - [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), - [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), - [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(494), - [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), - [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(496), - [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(497), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(498), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(500), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(501), - [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), - [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(503), - [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(504), - [1194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(505), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [1200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), - [1206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), - [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [1212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), - [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), - [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), - [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), - [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), - [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(564), - [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(565), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), - [1234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(567), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), - [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), - [1252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), - [1258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [1268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), - [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 2), - [1274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), - [1276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), - [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), - [1280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), - [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), - [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 3), - [1288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), - [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), - [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 5), - [1296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), - [1298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(523), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), - [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), - [1304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3), - [1312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), - [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), - [1318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), - [1324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), - [1330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), - [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), - [1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), - [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(534), - [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), - [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), - [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541), - [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), - [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), - [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), - [1370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), - [1376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), - [1382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), - [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), - [1394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), - [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), - [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), - [1404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), - [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), - [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), - [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), - [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), - [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), - [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), - [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), - [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), - [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), - [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), - [1442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), - [1448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), - [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), - [1456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), - [1464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(610), - [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), - [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), - [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(613), - [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), - [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(615), - [1480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(616), - [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), - [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), - [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), - [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), - [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), - [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), - [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(625), - [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), - [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), - [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), - [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), - [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), - [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), - [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), - [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), - [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), - [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), - [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), - [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(672), - [1554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(673), - [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), - [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), - [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), - [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), - [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), - [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), - [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(675), - [1572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), - [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), - [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), - [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), - [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), - [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), - [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), - [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), - [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), - [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), - [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), - [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), - [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(710), - [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [1608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), - [1614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), - [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), - [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), - [1624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), - [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_ifdef_repeat1, 1), - [1630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_ifdef_repeat1, 1), - [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), - [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(723), - [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), - [1640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_ifdef_repeat1, 2), - [1644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_ifdef_repeat1, 2), - [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), - [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), - [1652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), - [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), - [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), - [1660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(732), - [1662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), - [1666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), - [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(738), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), - [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), - [1678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(735), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), - [1684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), - [1692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 4), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 4), - [1698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 4), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), - [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), - [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), - [1706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), - [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(746), - [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), - [1714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), - [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), - [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(745), - [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), - [1726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), - [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), - [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), - [1736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), - [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), - [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(853), - [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(854), - [1758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1077), - [1760] = {.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(1070), - [1766] = {.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(741), - [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), - [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), - [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), - [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), - [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1031), - [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(341), - [1795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1032), - [1797] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), - [1801] = {.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__expression, 3), REDUCE(sym_call_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(831), - [1816] = {.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__expression, 3), REDUCE(sym_call_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), - [1829] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), - [1833] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym__expression, 3), REDUCE(sym_call_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(492), - [1845] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_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(832), - [1854] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), - [1860] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), - [1869] = {.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(946), - [1875] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), - [1882] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym__expression, 3), REDUCE(sym_call_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), - [1892] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(667), - [1895] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(668), - [1898] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(669), - [1901] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(670), - [1904] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(671), - [1907] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(499), - [1910] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(672), - [1913] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(501), - [1916] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(502), - [1919] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(503), - [1922] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(504), - [1925] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(832), - [1933] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(769), - [1936] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), - [1942] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(771), - [1945] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(833), - [1953] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(833), - [1961] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(778), - [1964] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(51), - [1967] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(846), - [1971] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [1975] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [1979] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [1983] = {.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), - [1989] = {.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), - [1995] = {.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(848), - [2009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), - [2011] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [2015] = {.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), - [2021] = {.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(1008), - [2035] = {.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(850), - [2049] = {.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), - [2062] = {.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), - [2075] = {.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), - [2094] = {.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), - [2113] = {.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), - [2121] = {.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(851), - [2135] = {.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(852), - [2149] = {.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(853), - [2163] = {.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(853), - [2177] = {.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(854), - [2191] = {.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(51), - [2205] = {.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(52), - [2225] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(999), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2230] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(208), - [2233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), - [2235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(769), - [2237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), - [2239] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(833), - [2241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [2243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), - [2245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1001), - [2247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(993), - [2249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [2251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [2253] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), SHIFT(7), - [2256] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(52), - [2259] = {.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), - [2270] = {.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), - [2276] = {.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), - [2288] = {.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), - [2295] = {.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), - [2300] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), - [2303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), - [2305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), - [2307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [2309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [2311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), - [2313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [2315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [2317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), - [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [2321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(951), - [2323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(952), - [2325] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), - [2328] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), - [2331] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 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), - [2345] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, 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 = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), - [2360] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 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), - [2374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2380] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2385] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2390] = {.count = 11, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), 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), - [2402] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2405] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2408] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2411] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(846), - [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), - [2418] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(831), - [2421] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(832), - [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(769), - [2426] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(833), - [2429] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(833), - [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(924), - [2436] = {.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(917), - [2446] = {.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(740), - [2459] = {.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(741), - [2471] = {.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(526), - [2481] = {.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), - [2489] = {.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), - [2499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [2502] = {.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(455), - [2508] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), SHIFT(918), - [2511] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [2515] = {.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(676), - [2525] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [2528] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [2532] = {.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(13), - [2539] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [2542] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), - [2547] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), - [2550] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), - [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), - [2557] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(295), - [2561] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(692), - [2565] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(296), - [2569] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), - [2576] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), - [2579] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), - [2582] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(297), - [2586] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(298), - [2590] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(299), - [2594] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(299), - [2598] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(300), - [2602] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(51), - [2606] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(52), - [2614] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(41), - [2617] = {.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(903), - [2626] = {.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(265), - [2631] = {.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(904), - [2638] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(42), - [2641] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(43), - [2644] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(490), - [2647] = {.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(905), - [2652] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(211), - [2655] = {.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), - [2659] = {.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(264), - [2666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(212), - [2669] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(33), - [2673] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(902), - [2677] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2680] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2683] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2686] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2690] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [2694] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), - [2697] = {.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), - [2702] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), - [2705] = {.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), - [2710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_parameter_declaration, 2), - [2713] = {.count = 5, .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), SHIFT(272), - [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), - [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [2723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [2725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), - [2727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), - [2729] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [2732] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [2735] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [2738] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), REDUCE(sym__enum_specifier_contents, 3), - [2741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [2743] = {.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(229), - [2747] = {.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), - [2751] = {.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), - [2766] = {.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), - [2781] = {.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(710), - [2795] = {.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(569), - [2811] = {.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), - [2826] = {.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(55), - [2842] = {.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(158), - [2865] = {.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(aux_sym_for_statement_repeat1, 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(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(842), - [2883] = {.count = 16, .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_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(843), - [2900] = {.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(776), - [2916] = {.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), - [2932] = {.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(844), - [2948] = {.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(766), - [2964] = {.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), - [2983] = {.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(845), - [2999] = {.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(765), - [3015] = {.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(766), - [3031] = {.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(770), - [3047] = {.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(768), - [3063] = {.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(772), - [3079] = {.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(773), - [3095] = {.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(773), - [3111] = {.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(774), - [3127] = {.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(69), - [3143] = {.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(70), - [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [3161] = {.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), - [3167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), - [3170] = {.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), - [3175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [3178] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3181] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3184] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), - [3189] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), - [3194] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(723), - [3197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), - [3199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(820), - [3201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), - [3203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(822), - [3205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), - [3207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [3215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [3218] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(295), - [3221] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(492), - [3224] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(296), - [3227] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(299), - [3230] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(299), - [3233] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3237] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3241] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3245] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3248] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3251] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), - [3256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3259] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3262] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3265] = {.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), - [3270] = {.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), - [3275] = {.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), - [3281] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), - [3284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), - [3286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [3288] = {.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), - [3294] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [3297] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(235), - [3300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), - [3302] = {.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), - [3306] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3309] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3312] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3315] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(831), - [3318] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(832), - [3321] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(833), - [3324] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(833), - [3327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(55), - [3330] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(776), - [3333] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(57), - [3336] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(766), - [3339] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(765), - [3342] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(766), - [3345] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(770), - [3348] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(768), - [3351] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(772), - [3354] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(773), - [3357] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(773), - [3360] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(774), - [3363] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(69), - [3366] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(70), - [3369] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), - [3372] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(776), - [3375] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), - [3378] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), - [3381] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(765), - [3384] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), - [3387] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(770), - [3390] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(768), - [3393] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(772), - [3396] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), - [3399] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), - [3402] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), - [3405] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(69), - [3408] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), - [3411] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(55), - [3414] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(776), - [3417] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(57), - [3420] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(766), - [3423] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(765), - [3426] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(766), - [3429] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(770), - [3432] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(768), - [3435] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(772), - [3438] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(773), - [3441] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(773), - [3444] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(774), - [3447] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(69), - [3450] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(70), - [3453] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(55), - [3456] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(776), - [3459] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(57), - [3462] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(766), - [3465] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(765), - [3468] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(766), - [3471] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(770), - [3474] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(768), - [3477] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(772), - [3480] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(773), - [3483] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(773), - [3486] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(774), - [3489] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(69), - [3492] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(70), - [3495] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(55), - [3498] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(776), - [3501] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(57), - [3504] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(766), - [3507] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(765), - [3510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(766), - [3513] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(770), - [3516] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(768), - [3519] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(772), - [3522] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(773), - [3525] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(773), - [3528] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(774), - [3531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(69), - [3534] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(70), - [3537] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(55), - [3540] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(776), - [3543] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(57), - [3546] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(766), - [3549] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(765), - [3552] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(766), - [3555] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(770), - [3558] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(768), - [3561] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(772), - [3564] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(773), - [3567] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(773), - [3570] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(774), - [3573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(69), - [3576] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(70), - [3579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [3581] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(295), - [3586] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), - [3589] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(492), - [3594] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(296), - [3599] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), - [3602] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(490), - [3605] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), - [3609] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(297), - [3612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(298), - [3615] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(299), - [3620] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(299), - [3625] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(300), - [3628] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(673), - [3631] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(848), - [3635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), - [3637] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(681), - [3641] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(850), - [3645] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [3648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [3651] = {.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), - [3658] = {.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), - [3665] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(851), - [3669] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(852), - [3673] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(853), - [3677] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(853), - [3681] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(854), - [3685] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(51), - [3689] = {.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(52), - [3697] = {.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), - [3706] = {.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), - [3711] = {.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), - [3721] = {.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), - [3727] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [3731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(676), - [3734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(55), - [3737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(514), - [3740] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(776), - [3743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(57), - [3746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(766), - [3749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(765), - [3752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(766), - [3755] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(770), - [3758] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(768), - [3761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(772), - [3764] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(773), - [3767] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(773), - [3770] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(774), - [3773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(69), - [3776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(70), - [3779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [3781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [3783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [3785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(857), - [3787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), - [3789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), - [3791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [3793] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), - [3795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [3797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [3799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(863), - [3801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), - [3803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(864), - [3805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), - [3807] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3810] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3813] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3816] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(857), - [3819] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(858), - [3822] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(859), - [3825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(858), - [3828] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(860), - [3831] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(861), - [3834] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(862), - [3837] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(863), - [3840] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(863), - [3843] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(864), - [3846] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(55), - [3849] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(857), - [3852] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(57), - [3855] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(858), - [3858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(859), - [3861] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(858), - [3864] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(860), - [3867] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(861), - [3870] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(862), - [3873] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(863), - [3876] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(863), - [3879] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(864), - [3882] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(69), - [3885] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(70), - [3888] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(55), - [3891] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(857), - [3894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(57), - [3897] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(858), - [3900] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(859), - [3903] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(858), - [3906] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(860), - [3909] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(861), - [3912] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(862), - [3915] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(863), - [3918] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(863), - [3921] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(864), - [3924] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(69), - [3927] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(70), - [3930] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(55), - [3933] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(857), - [3936] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(57), - [3939] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(858), - [3942] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(859), - [3945] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(858), - [3948] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(860), - [3951] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(861), - [3954] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(862), - [3957] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(863), - [3960] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(863), - [3963] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(864), - [3966] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(69), - [3969] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(70), - [3972] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(857), - [3975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(858), - [3978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(859), - [3981] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(858), - [3984] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(860), - [3987] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(861), - [3990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(862), - [3993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(863), - [3996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(863), - [3999] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(864), - [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(55), - [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(857), - [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(57), - [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(858), - [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(859), - [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(858), - [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(860), - [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(861), - [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(862), - [4029] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(863), - [4032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(863), - [4035] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(864), - [4038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(69), - [4041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(70), - [4044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(857), - [4047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(858), - [4050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(859), - [4053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(858), - [4056] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(860), - [4059] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(861), - [4062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(862), - [4065] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(863), - [4068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(863), - [4071] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(864), - [4074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [4076] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(857), - [4079] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(858), - [4082] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(859), - [4085] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(858), - [4088] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(860), - [4091] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(861), - [4094] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(862), - [4097] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(863), - [4100] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(863), - [4103] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(864), - [4106] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4109] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4112] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4115] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(55), - [4118] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(857), - [4121] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(57), - [4124] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(858), - [4127] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(859), - [4130] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(858), - [4133] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(860), - [4136] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(861), - [4139] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(862), - [4142] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(863), - [4145] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(863), - [4148] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(864), - [4151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(69), - [4154] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(70), - [4157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), - [4159] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(848), - [4162] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(850), - [4165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(851), - [4167] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(853), - [4170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(853), - [4173] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(857), - [4176] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(858), - [4179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(859), - [4182] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(858), - [4185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(860), - [4188] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(861), - [4191] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(862), - [4194] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(863), - [4197] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(863), - [4200] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(864), - [4203] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(857), - [4206] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(858), - [4209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(859), - [4212] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(858), - [4215] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(860), - [4218] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(861), - [4221] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(862), - [4224] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(863), - [4227] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(863), - [4230] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(864), - [4233] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(55), - [4236] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(857), - [4239] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(57), - [4242] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(858), - [4245] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(859), - [4248] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(858), - [4251] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(860), - [4254] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(861), - [4257] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(862), - [4260] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(863), - [4263] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(863), - [4266] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(864), - [4269] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(69), - [4272] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(70), - [4275] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(55), - [4278] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(857), - [4281] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(57), - [4284] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(858), - [4287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(859), - [4290] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(858), - [4293] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(860), - [4296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(861), - [4299] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(862), - [4302] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(863), - [4305] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(863), - [4308] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(864), - [4311] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(69), - [4314] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(70), - [4317] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(857), - [4320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(858), - [4323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(859), - [4326] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(858), - [4329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(860), - [4332] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(861), - [4335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(862), - [4338] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(863), - [4341] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(863), - [4344] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(864), - [4347] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [4350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [4353] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [4356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [4358] = {.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), - [4365] = {.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), - [4372] = {.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(710), - [4380] = {.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), - [4387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), - [4390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [4392] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), - [4395] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), - [4398] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [4401] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [4404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [4407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [4410] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [4413] = {.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), - [4418] = {.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), - [4423] = {.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), - [4428] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(903), - [4432] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), - [4435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), - [4437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [4439] = {.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), - [4444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [4446] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [4449] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [4452] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [4455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [4457] = {.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), - [4462] = {.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), - [4467] = {.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), - [4472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [4474] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [4477] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [4480] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [4483] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), - [4486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), - [4488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), SHIFT(33), - [4491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [4494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [4497] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), - [4500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), - [4502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [4504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(920), - [4506] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [4509] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [4512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [4514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [4517] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [4520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(741), - [4523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [4526] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [4529] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(776), - [4532] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(766), - [4535] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(765), - [4538] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(766), - [4541] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(770), - [4544] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(768), - [4547] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(772), - [4550] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(773), - [4553] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(773), - [4556] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(774), - [4559] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), - [4563] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), - [4566] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(776), - [4570] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), - [4574] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), - [4578] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(765), - [4582] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), - [4586] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(770), - [4590] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(768), - [4594] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(772), - [4598] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), - [4602] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), - [4606] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), - [4610] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(69), - [4614] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), - [4618] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(776), - [4621] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(766), - [4624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(765), - [4627] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(766), - [4630] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(770), - [4633] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(768), - [4636] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(772), - [4639] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(773), - [4642] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(773), - [4645] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(774), - [4648] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(776), - [4651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(766), - [4654] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(765), - [4657] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(766), - [4660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(770), - [4663] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(768), - [4666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(772), - [4669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(773), - [4672] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(773), - [4675] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(774), - [4678] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(776), - [4681] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(766), - [4684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(765), - [4687] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(766), - [4690] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(770), - [4693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(768), - [4696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(772), - [4699] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(773), - [4702] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(773), - [4705] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(774), - [4708] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(776), - [4711] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(766), - [4714] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(765), - [4717] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(766), - [4720] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(770), - [4723] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(768), - [4726] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(772), - [4729] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(773), - [4732] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(773), - [4735] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(774), - [4738] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(776), - [4741] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(766), - [4744] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(765), - [4747] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(766), - [4750] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(770), - [4753] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(768), - [4756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(772), - [4759] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(773), - [4762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(773), - [4765] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(774), - [4768] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(776), - [4771] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(766), - [4774] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(765), - [4777] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(766), - [4780] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(770), - [4783] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(768), - [4786] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(772), - [4789] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(773), - [4792] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(773), - [4795] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(774), - [4798] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(55), - [4802] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), - [4805] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(776), - [4809] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(57), - [4813] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(766), - [4817] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(765), - [4821] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(766), - [4825] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(770), - [4829] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(768), - [4833] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(772), - [4837] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(773), - [4841] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(773), - [4845] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(774), - [4849] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(69), - [4853] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(70), - [4857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [4859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), - [4861] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(295), - [4864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(492), - [4867] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(296), - [4870] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(297), - [4873] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(299), - [4876] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(299), - [4879] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4883] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4887] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [4891] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(943), - [4894] = {.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), - [4900] = {.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), - [4906] = {.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), - [4912] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, 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), - [4918] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [4923] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, 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), - [4929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), - [4931] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), - [4934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(455), - [4937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(522), - [4940] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), - [4943] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), - [4946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), - [4948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(956), - [4950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(957), - [4952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [4954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [4956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(959), - [4958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), - [4960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [4962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(962), - [4964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [4966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), - [4968] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(956), - [4971] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(957), - [4974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(958), - [4977] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(957), - [4980] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(959), - [4983] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(960), - [4986] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(961), - [4989] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(962), - [4992] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(962), - [4995] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(963), - [4998] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(956), - [5001] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(957), - [5004] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(958), - [5007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(957), - [5010] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(959), - [5013] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(960), - [5016] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(961), - [5019] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(962), - [5022] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(962), - [5025] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(963), - [5028] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(956), - [5031] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(957), - [5034] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(958), - [5037] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(957), - [5040] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(959), - [5043] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(960), - [5046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(961), - [5049] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(962), - [5052] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(962), - [5055] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(963), - [5058] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(956), - [5061] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(957), - [5064] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(958), - [5067] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(957), - [5070] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(959), - [5073] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(960), - [5076] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(961), - [5079] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(962), - [5082] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(962), - [5085] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(963), - [5088] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(956), - [5091] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(957), - [5094] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(958), - [5097] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(957), - [5100] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(959), - [5103] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(960), - [5106] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(961), - [5109] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(962), - [5112] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(962), - [5115] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(963), - [5118] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(956), - [5121] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(957), - [5124] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(958), - [5127] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(957), - [5130] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(959), - [5133] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(960), - [5136] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(961), - [5139] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(962), - [5142] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(962), - [5145] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(963), - [5148] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(956), - [5151] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(957), - [5154] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(958), - [5157] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(957), - [5160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(959), - [5163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(960), - [5166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(961), - [5169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(962), - [5172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(962), - [5175] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(963), - [5178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), - [5180] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(956), - [5183] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(957), - [5186] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(958), - [5189] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(957), - [5192] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(959), - [5195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(960), - [5198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(961), - [5201] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(962), - [5204] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(962), - [5207] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(963), - [5210] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5213] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5216] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [5221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [5223] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5226] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5229] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5232] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(956), - [5235] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(957), - [5238] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(958), - [5241] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(957), - [5244] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(959), - [5247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(960), - [5250] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(961), - [5253] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(962), - [5256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(962), - [5259] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(963), - [5262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), - [5264] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(944), - [5267] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(945), - [5270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(948), - [5272] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(950), - [5275] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(950), - [5278] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(956), - [5281] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(957), - [5284] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(958), - [5287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(957), - [5290] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(959), - [5293] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(960), - [5296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(961), - [5299] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(962), - [5302] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(962), - [5305] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(963), - [5308] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(956), - [5311] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(957), - [5314] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(958), - [5317] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(957), - [5320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(959), - [5323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(960), - [5326] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(961), - [5329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(962), - [5332] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(962), - [5335] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(963), - [5338] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(956), - [5341] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(957), - [5344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(958), - [5347] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(957), - [5350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(959), - [5353] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(960), - [5356] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(961), - [5359] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(962), - [5362] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(962), - [5365] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(963), - [5368] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(956), - [5371] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(957), - [5374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(958), - [5377] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(957), - [5380] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(959), - [5383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(960), - [5386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(961), - [5389] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(962), - [5392] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(962), - [5395] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(963), - [5398] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(956), - [5401] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(957), - [5404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(958), - [5407] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(957), - [5410] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(959), - [5413] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(960), - [5416] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(961), - [5419] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(962), - [5422] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(962), - [5425] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(963), - [5428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [5430] = {.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), - [5436] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), - [5439] = {.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), - [5444] = {.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), - [5448] = {.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), - [5452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [5454] = {.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), - [5458] = {.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), - [5462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [5464] = {.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), - [5469] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [5472] = {.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), - [5478] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [5482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [5484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), - [5486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1005), - [5488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), - [5491] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), - [5494] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), - [5498] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), - [5501] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(776), - [5505] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), - [5509] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), - [5513] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(765), - [5517] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), - [5521] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(770), - [5525] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(768), - [5529] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(772), - [5533] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), - [5537] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), - [5541] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), - [5545] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(69), - [5549] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), - [5553] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1003), - [5556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), - [5558] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(269), - [5563] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), - [5567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [5569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [5571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), - [5573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), - [5575] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [5579] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [5583] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [5587] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [5590] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [5593] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [5596] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5600] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5604] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5608] = {.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), - [5617] = {.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), - [5626] = {.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(710), - [5636] = {.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), - [5645] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(514), - [5648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [5650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [5652] = {.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), - [5657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1067), - [5659] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [5663] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [5667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), - [5669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), - [5671] = {.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), - [5678] = {.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), - [5683] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(455), - [5687] = {.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), - [5692] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), - [5695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), - [5698] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [5701] = {.count = 3, .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), - [5705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(aux_sym_for_statement_repeat1, 3), - [5708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1037), - [5710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1038), - [5712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), - [5714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), - [5716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), - [5718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), - [5720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), - [5722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1043), - [5724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [5726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1044), - [5728] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1037), - [5731] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1038), - [5734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1039), - [5737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1038), - [5740] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1040), - [5743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1041), - [5746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1042), - [5749] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1043), - [5752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1043), - [5755] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1044), - [5758] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1037), - [5761] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1038), - [5764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1039), - [5767] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1038), - [5770] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1040), - [5773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1041), - [5776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1042), - [5779] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1043), - [5782] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1043), - [5785] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1044), - [5788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), - [5790] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1037), - [5793] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1038), - [5796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1039), - [5799] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1038), - [5802] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1040), - [5805] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1041), - [5808] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1042), - [5811] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1043), - [5814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1043), - [5817] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1044), - [5820] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1037), - [5823] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1038), - [5826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1039), - [5829] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1038), - [5832] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1040), - [5835] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1041), - [5838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1042), - [5841] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1043), - [5844] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1043), - [5847] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1044), - [5850] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1037), - [5853] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1038), - [5856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1039), - [5859] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1038), - [5862] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1040), - [5865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1041), - [5868] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1042), - [5871] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1043), - [5874] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1043), - [5877] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1044), - [5880] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1037), - [5883] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1038), - [5886] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1039), - [5889] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1038), - [5892] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1040), - [5895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1041), - [5898] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1042), - [5901] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1043), - [5904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1043), - [5907] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1044), - [5910] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1037), - [5913] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1038), - [5916] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1039), - [5919] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1038), - [5922] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1040), - [5925] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1041), - [5928] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1042), - [5931] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1043), - [5934] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1043), - [5937] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1044), - [5940] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1037), - [5943] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1038), - [5946] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1039), - [5949] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1038), - [5952] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1040), - [5955] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1041), - [5958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1042), - [5961] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1043), - [5964] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1043), - [5967] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1044), - [5970] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1037), - [5973] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1038), - [5976] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1039), - [5979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1038), - [5982] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1040), - [5985] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1041), - [5988] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1042), - [5991] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1043), - [5994] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1043), - [5997] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1044), - [6000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [6002] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1037), - [6005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1038), - [6008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1039), - [6011] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1038), - [6014] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1040), - [6017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1041), - [6020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1042), - [6023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1043), - [6026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1043), - [6029] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1044), - [6032] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1037), - [6035] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1038), - [6038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1039), - [6041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1038), - [6044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1040), - [6047] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1041), - [6050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1042), - [6053] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1043), - [6056] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1043), - [6059] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1044), - [6062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [6064] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1045), - [6067] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1027), - [6070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), - [6072] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1030), - [6075] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1030), - [6078] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1037), - [6081] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1038), - [6084] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1039), - [6087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1038), - [6090] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1040), - [6093] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1041), - [6096] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1042), - [6099] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1043), - [6102] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1043), - [6105] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1044), - [6108] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1037), - [6111] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1038), - [6114] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1039), - [6117] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1038), - [6120] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1040), - [6123] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1041), - [6126] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1042), - [6129] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1043), - [6132] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1043), - [6135] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1044), - [6138] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1037), - [6141] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1038), - [6144] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1039), - [6147] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1038), - [6150] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1040), - [6153] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1041), - [6156] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1042), - [6159] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1043), - [6162] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1043), - [6165] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1044), - [6168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), - [6170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1072), - [6172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), - [6175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), - [6178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [6180] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), SHIFT(741), - [6183] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), - [6187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), - [6190] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), - [6193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1073), - [6196] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(740), - [6200] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(741), - [6205] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), SHIFT(272), - [6209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), - [6211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [6213] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6217] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6221] = {.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(710), - [6226] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [6230] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(33), - [6233] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), + [169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), + [177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(447), + [179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), + [183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), + [185] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(275), + [187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(270), + [190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), + [192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), + [194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), + [202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__preproc_statement, 1), + [204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__preproc_statement, 1), + [206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__preproc_statement, 1), + [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(27), + [210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(28), + [212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(29), + [214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(30), + [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1), + [218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1), + [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 1), + [222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(25), + [224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declaration_specifiers, 1), + [226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declaration_specifiers, 1), + [228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sized_type_specifier, 1), + [230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(23), + [232] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sized_type_specifier, 1), SHIFT(24), + [235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_sized_type_specifier, 2), + [243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_sized_type_specifier, 2), + [245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), + [257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), + [259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), + [261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), + [263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), + [265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(41), + [267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), + [269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(34), + [271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(42), + [273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), + [275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), + [277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(38), + [279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), + [281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), + [283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), + [285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(36), + [287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(37), + [289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), + [291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), + [293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), + [295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 3), + [297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), + [299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), + [301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), + [303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(118), + [305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(240), + [307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(241), + [309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), + [311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), + [313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), + [315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), + [317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), + [319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(51), + [321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(52), + [323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), + [325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(45), + [327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), + [329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), + [331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), + [333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(49), + [335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), + [337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(50), + [339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(192), + [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), + [343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), + [345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(195), + [347] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(196), + [349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), + [351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(197), + [353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), + [355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), + [359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), + [361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [365] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(340), + [367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(341), + [371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), + [375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), + [377] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), + [379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), + [381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), + [383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(55), + [385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), + [387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), + [389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), + [391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(58), + [393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), + [395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(58), + [397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), + [399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61), + [401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(62), + [403] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), + [405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(64), + [407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(65), + [409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(66), + [411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66), + [413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(67), + [415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(68), + [417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), + [419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(70), + [421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(150), + [423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), + [425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), + [427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), + [429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), + [431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), + [435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), + [437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), + [439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(84), + [441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85), + [443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), + [445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), + [447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(87), + [449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(88), + [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(71), + [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(477), + [489] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(90), + [491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(91), + [493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(92), + [495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), + [497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), + [499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), + [501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), + [503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), + [505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(97), + [507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), + [509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), + [511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), + [513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(100), + [515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), + [517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(102), + [519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), + [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(471), + [525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), + [527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125), + [529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(126), + [531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(127), + [533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(126), + [535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(128), + [537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(129), + [539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), + [541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(131), + [543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(132), + [545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(133), + [547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), + [549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(134), + [551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(135), + [553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(136), + [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(148), + [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(190), + [567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), + [569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), + [571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), + [573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), + [575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), + [577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), + [579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(163), + [581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), + [585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(166), + [587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), + [589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(168), + [591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(169), + [593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), + [595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(170), + [597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(171), + [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(173), + [605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174), + [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(187), + [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 = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), + [623] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(270), + [627] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), + [630] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), + [633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), + [635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), + [637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), + [639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), + [641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 1), + [643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), + [645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), + [647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), + [649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390), + [651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(391), + [653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(392), + [655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(393), + [659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), + [663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(396), + [665] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(397), + [667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), + [671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), + [673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(400), + [675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(401), + [677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(24), + [681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), + [683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 2), + [685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), + [687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 2), + [689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), + [691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(254), + [693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), + [697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 3), + [699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(213), + [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), + [703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), + [705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(214), + [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), + [709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(219), + [711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), + [713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(218), + [715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), + [717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), + [719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), + [721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), + [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 6), + [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(230), + [727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), + [729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 3), + [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), + [733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), + [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), + [739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), + [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), + [743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 2), + [745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), + [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), + [751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 4), + [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(262), + [755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), + [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(245), + [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), + [761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(244), + [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), + [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(247), + [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), + [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(249), + [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 6), + [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), + [775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(253), + [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), + [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), + [781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(258), + [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), + [785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), + [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), + [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), + [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), + [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), + [795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), + [797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(271), + [799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(270), + [801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), + [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), + [805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), + [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), + [811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), + [813] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), + [815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(277), + [817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 4), + [819] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 4), + [821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), + [827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [829] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), + [835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 5), + [837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 5), + [839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [841] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), + [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), + [849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), + [851] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 3), + [853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), + [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [863] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), + [865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), + [869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), + [875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), + [877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), + [879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), + [881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), + [889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), + [891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), + [893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(329), + [895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), + [897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(304), + [899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(305), + [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(306), + [903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), + [905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), + [907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), + [909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), + [911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(311), + [915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), + [917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(313), + [919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), + [921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314), + [923] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(315), + [925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), + [927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 7), + [929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), + [931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(327), + [933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), + [937] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), + [939] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), + [941] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(298), + [943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), + [945] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), + [947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), + [949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), + [951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(384), + [955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), + [957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(352), + [959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), + [961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), + [963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), + [965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(355), + [967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), + [969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), + [971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), + [973] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), + [975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), + [977] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(361), + [979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), + [983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), + [985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), + [987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), + [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), + [991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), + [993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), + [997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), + [999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), + [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), + [1005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), + [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), + [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), + [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), + [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), + [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), + [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(336), + [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(338), + [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), + [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), + [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), + [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), + [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), + [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), + [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), + [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), + [1039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), + [1041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), + [1043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [1045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), + [1047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), + [1049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), + [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 3), + [1053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [1055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), + [1057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), + [1059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), + [1061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), + [1063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), + [1065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), + [1067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), + [1069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3), + [1071] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3), + [1073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), + [1075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), + [1077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), + [1079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), + [1081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), + [1083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), + [1085] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), + [1087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), + [1089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), + [1091] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), + [1093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), + [1095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3), + [1097] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449), + [1099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), + [1101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [1103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), + [1105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), + [1107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [1109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), + [1111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [1113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), + [1115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), + [1117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), + [1119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), + [1121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 6), + [1123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 6), + [1125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 3), + [1127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), + [1129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), + [1131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), + [1133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), + [1135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), + [1137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), + [1139] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(153), + [1141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [1143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(193), + [1145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(194), + [1147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), + [1149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [1151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(474), + [1153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(118), + [1155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(119), + [1157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [1159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), + [1161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(84), + [1163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(85), + [1165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), + [1167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), + [1169] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(45), + [1171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(47), + [1173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [1175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), + [1177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), + [1179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [1181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), + [1183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(496), + [1185] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(497), + [1187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(498), + [1189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [1191] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(500), + [1193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(501), + [1195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), + [1197] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(503), + [1199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(504), + [1201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(505), + [1203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(506), + [1205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [1209] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), + [1213] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), + [1215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), + [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [1221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), + [1225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), + [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), + [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), + [1231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), + [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(564), + [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(565), + [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), + [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(567), + [1243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(568), + [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), + [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), + [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), + [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), + [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), + [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), + [1261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), + [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), + [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), + [1267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), + [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), + [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [1277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), + [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 2), + [1283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 2), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), + [1289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), + [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 3), + [1297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), + [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 5), + [1305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), + [1307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(524), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), + [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), + [1313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), + [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), + [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), + [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3), + [1321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), + [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), + [1327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), + [1333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), + [1339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), + [1347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [1351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(535), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), + [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), + [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), + [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), + [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), + [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), + [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), + [1373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), + [1379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), + [1385] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), + [1391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [1399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), + [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), + [1423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), + [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), + [1451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), + [1457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), + [1465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), + [1473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(613), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(615), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(616), + [1489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(617), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), + [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), + [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [1511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), + [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), + [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(625), + [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), + [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), + [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), + [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), + [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), + [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), + [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), + [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), + [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(672), + [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(673), + [1563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(674), + [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), + [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), + [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), + [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), + [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), + [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(676), + [1581] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), + [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), + [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), + [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), + [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), + [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), + [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), + [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), + [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(711), + [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [1617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), + [1623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(718), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), + [1633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_ifdef_repeat1, 1), + [1639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_ifdef_repeat1, 1), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), + [1649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_ifdef_repeat1, 2), + [1653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_ifdef_repeat1, 2), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), + [1661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), + [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), + [1669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(733), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), + [1675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [1677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), + [1679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), + [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(739), + [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), + [1685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), + [1687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), + [1689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), + [1693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [1695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), + [1697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), + [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), + [1701] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), + [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 4), + [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 4), + [1707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 4), + [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), + [1715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), + [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), + [1723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), + [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), + [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(746), + [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), + [1735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), + [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), + [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), + [1745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), + [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), + [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), + [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), + [1759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(854), + [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(855), + [1767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1078), + [1769] = {.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(1071), + [1775] = {.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(742), + [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), + [1788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), + [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), + [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1031), + [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), + [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1032), + [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(342), + [1804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1033), + [1806] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), + [1810] = {.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__expression, 3), REDUCE(sym_call_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(832), + [1825] = {.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__expression, 3), REDUCE(sym_call_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), + [1838] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), + [1842] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym__expression, 3), REDUCE(sym_call_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(493), + [1854] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_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(833), + [1863] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), + [1869] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), + [1878] = {.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(947), + [1884] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), + [1891] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym__expression, 3), REDUCE(sym_call_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), + [1901] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(668), + [1904] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(669), + [1907] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(670), + [1910] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(671), + [1913] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(672), + [1916] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(500), + [1919] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(673), + [1922] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(502), + [1925] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(503), + [1928] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(504), + [1931] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(505), + [1934] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(833), + [1942] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(770), + [1945] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), + [1951] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(772), + [1954] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(834), + [1962] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_call_expression, 4), REDUCE(sym_call_expression, 5), REDUCE(sym_do_statement, 6), SHIFT(834), + [1970] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(779), + [1973] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(51), + [1976] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(847), + [1980] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [1984] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [1988] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [1992] = {.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), + [1998] = {.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), + [2004] = {.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(849), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [2020] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [2024] = {.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), + [2030] = {.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(1009), + [2044] = {.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(851), + [2058] = {.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), + [2071] = {.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), + [2084] = {.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), + [2103] = {.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), + [2122] = {.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), + [2130] = {.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(852), + [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(853), + [2158] = {.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(854), + [2172] = {.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(854), + [2186] = {.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(855), + [2200] = {.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(51), + [2214] = {.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(52), + [2234] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1000), + [2237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2239] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(209), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(834), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(779), + [2254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1002), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), + [2262] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), SHIFT(7), + [2265] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(52), + [2268] = {.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), + [2279] = {.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), + [2285] = {.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), + [2297] = {.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), + [2304] = {.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), + [2309] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(951), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(952), + [2332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(953), + [2334] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2337] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2340] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 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), + [2354] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, 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), + [2366] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2369] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 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), + [2383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2386] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2389] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2394] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2399] = {.count = 11, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), 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), + [2411] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2414] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2417] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2420] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2423] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(847), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [2430] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(832), + [2433] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(833), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(770), + [2438] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(834), + [2441] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(834), + [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(925), + [2448] = {.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(918), + [2458] = {.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(741), + [2471] = {.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(742), + [2483] = {.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(527), + [2493] = {.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), + [2501] = {.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), + [2511] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [2514] = {.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(456), + [2520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), SHIFT(919), + [2523] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [2527] = {.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(677), + [2537] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [2540] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [2544] = {.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(13), + [2551] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [2554] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), + [2559] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), + [2562] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), + [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), + [2569] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(296), + [2573] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(693), + [2577] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(297), + [2581] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), + [2588] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), + [2591] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), + [2594] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(298), + [2598] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(299), + [2602] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(300), + [2606] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(300), + [2610] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(301), + [2614] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(51), + [2618] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_preproc_ifdef_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_preproc_ifdef_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), SHIFT(52), + [2626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(41), + [2629] = {.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(904), + [2638] = {.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(266), + [2643] = {.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(905), + [2650] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(42), + [2653] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(43), + [2656] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(491), + [2659] = {.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(906), + [2664] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(212), + [2667] = {.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), + [2671] = {.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(265), + [2678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(213), + [2681] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(33), + [2685] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(903), + [2689] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2692] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2695] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2698] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2702] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [2706] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), + [2709] = {.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), + [2714] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), + [2717] = {.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), + [2722] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_parameter_declaration, 2), + [2725] = {.count = 5, .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), SHIFT(273), + [2731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [2733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [2735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), + [2737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [2739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [2741] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [2744] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [2747] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [2750] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), REDUCE(sym__enum_specifier_contents, 3), + [2753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [2755] = {.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(230), + [2759] = {.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), + [2763] = {.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), + [2778] = {.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), + [2793] = {.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(711), + [2807] = {.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(570), + [2823] = {.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), + [2838] = {.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(55), + [2854] = {.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(158), + [2877] = {.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(aux_sym_for_statement_repeat1, 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(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(843), + [2895] = {.count = 16, .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_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(844), + [2912] = {.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(777), + [2928] = {.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), + [2944] = {.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(845), + [2960] = {.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(767), + [2976] = {.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), + [2995] = {.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(846), + [3011] = {.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(766), + [3027] = {.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(767), + [3043] = {.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(771), + [3059] = {.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(769), + [3075] = {.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(773), + [3091] = {.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(774), + [3107] = {.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(774), + [3123] = {.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(775), + [3139] = {.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(69), + [3155] = {.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(70), + [3171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [3173] = {.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), + [3179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), + [3182] = {.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), + [3187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [3190] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3193] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3196] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), + [3201] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_compound_statement_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), REDUCE(aux_sym_compound_statement_repeat1, 2), + [3206] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(724), + [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(821), + [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), + [3215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(823), + [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), + [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), + [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), + [3227] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [3230] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(296), + [3233] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(493), + [3236] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(297), + [3239] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 5), SHIFT(300), + [3242] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 5), SHIFT(300), + [3245] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3249] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3253] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3257] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3260] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3263] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [3268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3271] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3274] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3277] = {.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), + [3282] = {.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), + [3287] = {.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), + [3293] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), + [3296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), + [3298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), + [3300] = {.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), + [3306] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [3309] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(236), + [3312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), + [3314] = {.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), + [3318] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [3321] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [3324] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [3327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(832), + [3330] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(833), + [3333] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(834), + [3336] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(834), + [3339] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(55), + [3342] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(777), + [3345] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(57), + [3348] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(767), + [3351] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(766), + [3354] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(767), + [3357] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(771), + [3360] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(769), + [3363] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(773), + [3366] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(774), + [3369] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(774), + [3372] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(775), + [3375] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(69), + [3378] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(70), + [3381] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), + [3384] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(777), + [3387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), + [3390] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(767), + [3393] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), + [3396] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(767), + [3399] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(771), + [3402] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(769), + [3405] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), + [3408] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), + [3411] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), + [3414] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(775), + [3417] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(69), + [3420] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), + [3423] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(55), + [3426] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(777), + [3429] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(57), + [3432] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(767), + [3435] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(766), + [3438] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(767), + [3441] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(771), + [3444] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(769), + [3447] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(773), + [3450] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(774), + [3453] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(774), + [3456] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(775), + [3459] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(69), + [3462] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(70), + [3465] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(55), + [3468] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(777), + [3471] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(57), + [3474] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(767), + [3477] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(766), + [3480] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(767), + [3483] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(771), + [3486] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(769), + [3489] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(773), + [3492] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(774), + [3495] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(774), + [3498] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(775), + [3501] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(69), + [3504] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(70), + [3507] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(55), + [3510] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(777), + [3513] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(57), + [3516] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(767), + [3519] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(766), + [3522] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(767), + [3525] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(771), + [3528] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(769), + [3531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(773), + [3534] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(774), + [3537] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(774), + [3540] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(775), + [3543] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(69), + [3546] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(70), + [3549] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(55), + [3552] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(777), + [3555] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(57), + [3558] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(767), + [3561] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(766), + [3564] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(767), + [3567] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(771), + [3570] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(769), + [3573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(773), + [3576] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(774), + [3579] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(774), + [3582] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(775), + [3585] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(69), + [3588] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(70), + [3591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [3593] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(296), + [3598] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), + [3601] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(493), + [3606] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(297), + [3611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), + [3614] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(491), + [3617] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), + [3621] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(298), + [3624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(299), + [3627] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(300), + [3632] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 3), REDUCE(sym_call_expression, 4), REDUCE(sym_do_statement, 6), SHIFT(300), + [3637] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(301), + [3640] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(674), + [3643] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(849), + [3647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [3649] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(682), + [3653] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(851), + [3657] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [3660] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [3663] = {.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), + [3670] = {.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), + [3677] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(852), + [3681] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(853), + [3685] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(854), + [3689] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(854), + [3693] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(855), + [3697] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(51), + [3701] = {.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(52), + [3709] = {.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), + [3718] = {.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), + [3723] = {.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), + [3733] = {.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), + [3739] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [3743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(677), + [3746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(55), + [3749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(515), + [3752] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(777), + [3755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(57), + [3758] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(767), + [3761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(766), + [3764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(767), + [3767] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(771), + [3770] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(769), + [3773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(773), + [3776] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(774), + [3779] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(774), + [3782] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(775), + [3785] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(69), + [3788] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(70), + [3791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), + [3793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [3795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), + [3797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), + [3799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(859), + [3801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), + [3803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), + [3805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(861), + [3807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), + [3809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), + [3811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(864), + [3813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), + [3815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(865), + [3817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [3819] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3822] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3825] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3828] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(858), + [3831] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(859), + [3834] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(860), + [3837] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(859), + [3840] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(861), + [3843] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(862), + [3846] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(863), + [3849] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(864), + [3852] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(864), + [3855] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(865), + [3858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(55), + [3861] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(858), + [3864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(57), + [3867] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(859), + [3870] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(860), + [3873] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(859), + [3876] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(861), + [3879] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(862), + [3882] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(863), + [3885] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(864), + [3888] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(864), + [3891] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(865), + [3894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(69), + [3897] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(70), + [3900] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(55), + [3903] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(858), + [3906] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(57), + [3909] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(859), + [3912] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(860), + [3915] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(859), + [3918] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(861), + [3921] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(862), + [3924] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(863), + [3927] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(864), + [3930] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(864), + [3933] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(865), + [3936] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(69), + [3939] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(70), + [3942] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(55), + [3945] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(858), + [3948] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(57), + [3951] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(859), + [3954] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(860), + [3957] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(859), + [3960] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(861), + [3963] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(862), + [3966] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(863), + [3969] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(864), + [3972] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(864), + [3975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(865), + [3978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(69), + [3981] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(70), + [3984] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(858), + [3987] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(859), + [3990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(860), + [3993] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(859), + [3996] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(861), + [3999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(862), + [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(863), + [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(864), + [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(864), + [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(865), + [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(55), + [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(858), + [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(57), + [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(859), + [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(860), + [4029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(859), + [4032] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(861), + [4035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(862), + [4038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(863), + [4041] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(864), + [4044] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(864), + [4047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(865), + [4050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(69), + [4053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(70), + [4056] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(858), + [4059] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(859), + [4062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(860), + [4065] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(859), + [4068] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(861), + [4071] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(862), + [4074] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(863), + [4077] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(864), + [4080] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(864), + [4083] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(865), + [4086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [4088] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(858), + [4091] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(859), + [4094] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(860), + [4097] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(859), + [4100] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(861), + [4103] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(862), + [4106] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(863), + [4109] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(864), + [4112] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(864), + [4115] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(865), + [4118] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4121] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4124] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4127] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(55), + [4130] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(858), + [4133] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(57), + [4136] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(859), + [4139] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(860), + [4142] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(859), + [4145] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(861), + [4148] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(862), + [4151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(863), + [4154] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(864), + [4157] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(864), + [4160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(865), + [4163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(69), + [4166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(70), + [4169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [4171] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(849), + [4174] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(851), + [4177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(852), + [4179] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(854), + [4182] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(854), + [4185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(858), + [4188] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(859), + [4191] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(860), + [4194] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(859), + [4197] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(861), + [4200] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(862), + [4203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(863), + [4206] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(864), + [4209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(864), + [4212] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(865), + [4215] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(858), + [4218] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(859), + [4221] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(860), + [4224] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(859), + [4227] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(861), + [4230] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(862), + [4233] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(863), + [4236] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(864), + [4239] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(864), + [4242] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(865), + [4245] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(55), + [4248] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(858), + [4251] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(57), + [4254] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(859), + [4257] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(860), + [4260] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(859), + [4263] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(861), + [4266] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(862), + [4269] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(863), + [4272] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(864), + [4275] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(864), + [4278] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(865), + [4281] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(69), + [4284] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(70), + [4287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(55), + [4290] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(858), + [4293] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(57), + [4296] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(859), + [4299] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(860), + [4302] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(859), + [4305] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(861), + [4308] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(862), + [4311] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(863), + [4314] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(864), + [4317] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(864), + [4320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(865), + [4323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(69), + [4326] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(70), + [4329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(858), + [4332] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(859), + [4335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(860), + [4338] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(859), + [4341] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(861), + [4344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(862), + [4347] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(863), + [4350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(864), + [4353] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(864), + [4356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(865), + [4359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [4362] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [4365] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [4368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [4370] = {.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), + [4377] = {.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), + [4384] = {.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(711), + [4392] = {.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), + [4399] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), + [4402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), + [4404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), + [4407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), + [4410] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [4413] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [4416] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [4419] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [4422] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [4425] = {.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), + [4430] = {.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), + [4435] = {.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), + [4440] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(904), + [4444] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), + [4447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), + [4449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), + [4451] = {.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), + [4456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [4458] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [4461] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [4464] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [4467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), + [4469] = {.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), + [4474] = {.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), + [4479] = {.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), + [4484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [4486] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [4489] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [4492] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [4495] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), + [4498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [4500] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), SHIFT(33), + [4503] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [4506] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [4509] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_ifdef, 5), + [4512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(924), + [4514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [4516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(921), + [4518] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [4521] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [4526] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [4529] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [4532] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(742), + [4535] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [4538] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [4541] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(777), + [4544] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(767), + [4547] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(766), + [4550] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(767), + [4553] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(771), + [4556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(769), + [4559] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(773), + [4562] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(774), + [4565] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(774), + [4568] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(775), + [4571] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), + [4575] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), + [4578] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(777), + [4582] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), + [4586] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(767), + [4590] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), + [4594] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(767), + [4598] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(771), + [4602] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(769), + [4606] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), + [4610] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), + [4614] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), + [4618] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(775), + [4622] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(69), + [4626] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), + [4630] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(777), + [4633] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(767), + [4636] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(766), + [4639] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(767), + [4642] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(771), + [4645] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(769), + [4648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(773), + [4651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(774), + [4654] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(774), + [4657] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(775), + [4660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(777), + [4663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(767), + [4666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(766), + [4669] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(767), + [4672] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(771), + [4675] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(769), + [4678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(773), + [4681] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(774), + [4684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(774), + [4687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(775), + [4690] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(777), + [4693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(767), + [4696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(766), + [4699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(767), + [4702] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(771), + [4705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(769), + [4708] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(773), + [4711] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(774), + [4714] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(774), + [4717] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(775), + [4720] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(777), + [4723] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(767), + [4726] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(766), + [4729] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(767), + [4732] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(771), + [4735] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(769), + [4738] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(773), + [4741] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(774), + [4744] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(774), + [4747] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(775), + [4750] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(777), + [4753] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(767), + [4756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(766), + [4759] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(767), + [4762] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(771), + [4765] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(769), + [4768] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(773), + [4771] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(774), + [4774] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(774), + [4777] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(775), + [4780] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(777), + [4783] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(767), + [4786] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(766), + [4789] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(767), + [4792] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(771), + [4795] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(769), + [4798] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(773), + [4801] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(774), + [4804] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(774), + [4807] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(775), + [4810] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(55), + [4814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), + [4817] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(777), + [4821] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(57), + [4825] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(767), + [4829] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(766), + [4833] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(767), + [4837] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(771), + [4841] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(769), + [4845] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(773), + [4849] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(774), + [4853] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(774), + [4857] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(775), + [4861] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(69), + [4865] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(70), + [4869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), + [4871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(941), + [4873] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(296), + [4876] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(493), + [4879] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(297), + [4882] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(298), + [4885] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(300), + [4888] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(300), + [4891] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4895] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4899] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [4903] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(944), + [4906] = {.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), + [4912] = {.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), + [4918] = {.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), + [4924] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, 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), + [4930] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [4935] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, 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), + [4941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), + [4943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), + [4946] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(456), + [4949] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(523), + [4952] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), + [4955] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), + [4958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), + [4960] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(957), + [4962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(958), + [4964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [4966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), + [4968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(960), + [4970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), + [4972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [4974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), + [4976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [4978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(964), + [4980] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(957), + [4983] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(958), + [4986] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(959), + [4989] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(958), + [4992] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(960), + [4995] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(961), + [4998] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(962), + [5001] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(963), + [5004] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(963), + [5007] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(964), + [5010] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(957), + [5013] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(958), + [5016] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(959), + [5019] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(958), + [5022] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(960), + [5025] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(961), + [5028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(962), + [5031] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(963), + [5034] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(963), + [5037] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(964), + [5040] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(957), + [5043] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(958), + [5046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(959), + [5049] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(958), + [5052] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(960), + [5055] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(961), + [5058] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(962), + [5061] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(963), + [5064] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(963), + [5067] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(964), + [5070] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(957), + [5073] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(958), + [5076] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(959), + [5079] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(958), + [5082] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(960), + [5085] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(961), + [5088] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(962), + [5091] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(963), + [5094] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(963), + [5097] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(964), + [5100] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(957), + [5103] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(958), + [5106] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(959), + [5109] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(958), + [5112] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(960), + [5115] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(961), + [5118] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(962), + [5121] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(963), + [5124] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(963), + [5127] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(964), + [5130] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(957), + [5133] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(958), + [5136] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(959), + [5139] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(958), + [5142] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(960), + [5145] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(961), + [5148] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(962), + [5151] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(963), + [5154] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(963), + [5157] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(964), + [5160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(957), + [5163] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(958), + [5166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(959), + [5169] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(958), + [5172] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(960), + [5175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(961), + [5178] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(962), + [5181] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(963), + [5184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(963), + [5187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(964), + [5190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), + [5192] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(957), + [5195] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(958), + [5198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(959), + [5201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(958), + [5204] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(960), + [5207] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(961), + [5210] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(962), + [5213] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(963), + [5216] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(963), + [5219] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(964), + [5222] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5225] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5228] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), + [5233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), + [5235] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5238] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5241] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5244] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(957), + [5247] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(958), + [5250] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(959), + [5253] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(958), + [5256] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(960), + [5259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(961), + [5262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(962), + [5265] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(963), + [5268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(963), + [5271] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(964), + [5274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [5276] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(945), + [5279] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(946), + [5282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(949), + [5284] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(951), + [5287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(951), + [5290] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(957), + [5293] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(958), + [5296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(959), + [5299] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(958), + [5302] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(960), + [5305] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(961), + [5308] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(962), + [5311] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(963), + [5314] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(963), + [5317] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(964), + [5320] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(957), + [5323] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(958), + [5326] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(959), + [5329] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(958), + [5332] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(960), + [5335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(961), + [5338] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(962), + [5341] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(963), + [5344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(963), + [5347] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(964), + [5350] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(957), + [5353] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(958), + [5356] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(959), + [5359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(958), + [5362] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(960), + [5365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(961), + [5368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(962), + [5371] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(963), + [5374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(963), + [5377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(964), + [5380] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(957), + [5383] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(958), + [5386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(959), + [5389] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(958), + [5392] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(960), + [5395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(961), + [5398] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(962), + [5401] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(963), + [5404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(963), + [5407] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(964), + [5410] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(957), + [5413] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(958), + [5416] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(959), + [5419] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(958), + [5422] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(960), + [5425] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(961), + [5428] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(962), + [5431] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(963), + [5434] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(963), + [5437] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(964), + [5440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), + [5442] = {.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), + [5448] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), + [5451] = {.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), + [5456] = {.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), + [5460] = {.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), + [5464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [5466] = {.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), + [5470] = {.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), + [5474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [5476] = {.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), + [5481] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [5484] = {.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), + [5490] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [5494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [5496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [5498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), + [5500] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), + [5503] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), + [5506] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), + [5510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), + [5513] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(777), + [5517] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(57), + [5521] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(767), + [5525] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(766), + [5529] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(767), + [5533] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(771), + [5537] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(769), + [5541] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(773), + [5545] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), + [5549] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(774), + [5553] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(775), + [5557] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(69), + [5561] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), + [5565] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1004), + [5568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1007), + [5570] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(270), + [5575] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), + [5579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [5581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [5583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), + [5585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), + [5587] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [5591] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [5595] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [5599] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [5602] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [5605] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [5608] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5612] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5616] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5620] = {.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), + [5629] = {.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), + [5638] = {.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(711), + [5648] = {.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), + [5657] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(515), + [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [5662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [5664] = {.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), + [5669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1068), + [5671] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [5675] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [5679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), + [5681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [5683] = {.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), + [5690] = {.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), + [5695] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(456), + [5699] = {.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), + [5704] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), + [5707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), + [5710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [5713] = {.count = 3, .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), + [5717] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(aux_sym_for_statement_repeat1, 3), + [5720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1038), + [5722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1039), + [5724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [5726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [5728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1041), + [5730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), + [5732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [5734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1044), + [5736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [5738] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1045), + [5740] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1038), + [5743] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1039), + [5746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1040), + [5749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1039), + [5752] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1041), + [5755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1042), + [5758] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1043), + [5761] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1044), + [5764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1044), + [5767] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1045), + [5770] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1038), + [5773] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1039), + [5776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1040), + [5779] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1039), + [5782] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1041), + [5785] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1042), + [5788] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1043), + [5791] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1044), + [5794] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1044), + [5797] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1045), + [5800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [5802] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1038), + [5805] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1039), + [5808] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1040), + [5811] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1039), + [5814] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1041), + [5817] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1042), + [5820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1043), + [5823] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1044), + [5826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1044), + [5829] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1045), + [5832] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1038), + [5835] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1039), + [5838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1040), + [5841] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1039), + [5844] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1041), + [5847] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1042), + [5850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1043), + [5853] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1044), + [5856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1044), + [5859] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1045), + [5862] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1038), + [5865] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1039), + [5868] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1040), + [5871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1039), + [5874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1041), + [5877] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1042), + [5880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1043), + [5883] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1044), + [5886] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1044), + [5889] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1045), + [5892] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1038), + [5895] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1039), + [5898] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1040), + [5901] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1039), + [5904] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1041), + [5907] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1042), + [5910] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1043), + [5913] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1044), + [5916] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1044), + [5919] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1045), + [5922] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1038), + [5925] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1039), + [5928] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1040), + [5931] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1039), + [5934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1041), + [5937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1042), + [5940] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1043), + [5943] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1044), + [5946] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1044), + [5949] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1045), + [5952] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1038), + [5955] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1039), + [5958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1040), + [5961] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1039), + [5964] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1041), + [5967] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1042), + [5970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1043), + [5973] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1044), + [5976] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1044), + [5979] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1045), + [5982] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1038), + [5985] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1039), + [5988] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1040), + [5991] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1039), + [5994] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1041), + [5997] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1042), + [6000] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1043), + [6003] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1044), + [6006] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1044), + [6009] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1045), + [6012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), + [6014] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1038), + [6017] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1039), + [6020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1040), + [6023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1039), + [6026] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1041), + [6029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1042), + [6032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1043), + [6035] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1044), + [6038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1044), + [6041] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1045), + [6044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1038), + [6047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1039), + [6050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1040), + [6053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1039), + [6056] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1041), + [6059] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1042), + [6062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1043), + [6065] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1044), + [6068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1044), + [6071] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1045), + [6074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), + [6076] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1046), + [6079] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1028), + [6082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1029), + [6084] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1031), + [6087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1031), + [6090] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1038), + [6093] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1039), + [6096] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1040), + [6099] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1039), + [6102] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1041), + [6105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1042), + [6108] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1043), + [6111] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1044), + [6114] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1044), + [6117] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1045), + [6120] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1038), + [6123] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1039), + [6126] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1040), + [6129] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1039), + [6132] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1041), + [6135] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1042), + [6138] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1043), + [6141] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1044), + [6144] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1044), + [6147] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1045), + [6150] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1038), + [6153] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1039), + [6156] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1040), + [6159] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1039), + [6162] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1041), + [6165] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1042), + [6168] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1043), + [6171] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1044), + [6174] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1044), + [6177] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1045), + [6180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [6182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1073), + [6184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), + [6187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), + [6190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [6192] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), SHIFT(742), + [6195] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_call_expression, 3), + [6199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), + [6202] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declarator, 3), REDUCE(sym_call_expression, 3), + [6205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1074), + [6208] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(741), + [6212] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(742), + [6217] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), SHIFT(273), + [6221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), + [6223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [6225] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6229] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6233] = {.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(711), + [6238] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [6242] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(33), + [6245] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), }; const TSLanguage *tree_sitter_c() {