diff --git a/corpus/expressions.txt b/corpus/expressions.txt index a46c90e..bd8a0d0 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -280,6 +280,7 @@ int main() { sizeof x.a; sizeof(x.a); sizeof(const char **); + sizeof(char * ()); } --- @@ -292,7 +293,9 @@ int main() { (expression_statement (sizeof_expression (field_expression (identifier) (identifier)))) (expression_statement (sizeof_expression (parenthesized_expression (field_expression (identifier) (identifier))))) (expression_statement (sizeof_expression - (type_name (type_qualifier) (identifier) (abstract_pointer_declarator (abstract_pointer_declarator)))))))) + (type_name (type_qualifier) (identifier) (abstract_pointer_declarator (abstract_pointer_declarator))))) + (expression_statement (sizeof_expression + (type_name (identifier) (abstract_pointer_declarator (abstract_function_declarator)))))))) ============================================ Compound literals diff --git a/grammar.js b/grammar.js index 67f9b2b..8e7f4a9 100644 --- a/grammar.js +++ b/grammar.js @@ -29,11 +29,37 @@ module.exports = grammar({ ], conflicts: $ => [ + // Thing ( + // ^ + // This could be: + // * a type name in a declaration with a parenthesized variable name: + // int (b) = 0; + // * a function name in a function call: + // puts("hi"); + // * the name of a macro that defines a type: + // Array(int) x; [$._type_specifier, $._expression], - [$.sizeof_expression, $.cast_expression], [$._type_specifier, $._expression, $.macro_type_specifier], [$._type_specifier, $.macro_type_specifier], + + // unsigned x + // ^ + // This could be: + // * a modifier for the type that follows: + // unsigned int x = 5; + // * a type in itself: + // unsigned x = 5; [$.sized_type_specifier], + + // void foo(int (bar) + // ^ + // This could be: + // * the type of the first parameter to a callback function: + // void foo(int (int), bool); + // * a parenthesized name for the first parameter: + // void foo(int (some_int), bool); + [$._declarator, $._type_specifier], + [$._declarator, $._type_specifier, $.macro_type_specifier], ], rules: { @@ -193,7 +219,7 @@ module.exports = grammar({ )), abstract_function_declarator: $ => prec(1, seq( - $._abstract_declarator, + optional($._abstract_declarator), '(', optional($.parameter_type_list), ')' @@ -552,9 +578,12 @@ module.exports = grammar({ argument_list: $ => seq('(', commaSep($._expression), ')'), - field_expression: $ => choice( - prec.left(PREC.FIELD, seq($._expression, '.', $.identifier)), - prec.left(PREC.FIELD, seq($._expression, '->', $.identifier)) + field_expression: $ => seq( + prec(PREC.FIELD, seq( + $._expression, + choice('.', '->') + )), + $.identifier ), compound_literal_expression: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index d31c5ff..32b2777 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -689,8 +689,16 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_abstract_declarator" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2704,10 +2712,10 @@ ] }, "field_expression": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "PREC_LEFT", + "type": "PREC", "value": 15, "content": { "type": "SEQ", @@ -2717,36 +2725,24 @@ "name": "_expression" }, { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "->" + } + ] } ] } }, { - "type": "PREC_LEFT", - "value": 15, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } + "type": "SYMBOL", + "name": "identifier" } ] }, @@ -3348,10 +3344,6 @@ "_type_specifier", "_expression" ], - [ - "sizeof_expression", - "cast_expression" - ], [ "_type_specifier", "_expression", @@ -3363,7 +3355,37 @@ ], [ "sized_type_specifier" + ], + [ + "_declarator", + "_type_specifier" + ], + [ + "_declarator", + "_type_specifier", + "macro_type_specifier" ] ], - "externals": [] + "externals": [], + "PREC": { + "ASSIGNMENT": -1, + "CONDITIONAL": -2, + "DEFAULT": 0, + "LOGICAL_OR": 1, + "LOGICAL_AND": 2, + "INCLUSIVE_OR": 3, + "EXCLUSIVE_OR": 4, + "BITWISE_AND": 5, + "EQUAL": 6, + "RELATIONAL": 7, + "SIZEOF": 8, + "SHIFT": 9, + "ADD": 10, + "MULTIPLY": 11, + "CALL": 12, + "CAST": 13, + "UNARY": 14, + "FIELD": 15, + "SUBSCRIPT": 16 + } } \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index a4dc185..bc343f9 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 1545 +#define STATE_COUNT 1551 #define SYMBOL_COUNT 181 #define TOKEN_COUNT 92 #define EXTERNAL_TOKEN_COUNT 0 @@ -5580,19 +5580,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(319); if (lookahead == '(') ADVANCE(48); + if (lookahead == ')') + ADVANCE(49); if (lookahead == '*') ADVANCE(239); + if (lookahead == '.') + ADVANCE(320); if (lookahead == '/') ADVANCE(242); + if (('A' <= lookahead && lookahead <= 'Z') || + (lookahead == '_') || + (lookahead == 'b') || + (lookahead == 'd') || + ('f' <= lookahead && lookahead <= 'h') || + (lookahead == 'j') || + (lookahead == 'k') || + ('m' <= lookahead && lookahead <= 'q') || + ('w' <= lookahead && lookahead <= 'z')) + ADVANCE(91); if (lookahead == '[') ADVANCE(92); + if (lookahead == 'a') + ADVANCE(96); + if (lookahead == 'c') + ADVANCE(251); + if (lookahead == 'e') + ADVANCE(243); + if (lookahead == 'i') + ADVANCE(272); + if (lookahead == 'l') + ADVANCE(152); + if (lookahead == 'r') + ADVANCE(273); + if (lookahead == 's') + ADVANCE(275); + if (lookahead == 't') + ADVANCE(198); + if (lookahead == 'u') + ADVANCE(205); + if (lookahead == 'v') + ADVANCE(216); END_STATE(); case 320: + if (lookahead == '.') + ADVANCE(61); + END_STATE(); + case 321: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(320); + SKIP(321); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -5631,13 +5669,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(255); if (lookahead == 's') - ADVANCE(321); + ADVANCE(322); if (lookahead == 'v') ADVANCE(216); if (lookahead == '~') ADVANCE(234); END_STATE(); - case 321: + case 322: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -5649,9 +5687,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(179); if (lookahead == 't') - ADVANCE(322); + ADVANCE(323); END_STATE(); - case 322: + case 323: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -5661,12 +5699,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(185); END_STATE(); - case 323: + case 324: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(323); + SKIP(324); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') @@ -5676,12 +5714,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(92); END_STATE(); - case 324: + case 325: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(324); + SKIP(325); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') @@ -5693,16 +5731,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(92); END_STATE(); - case 325: + case 326: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(325); + SKIP(326); if (lookahead == ')') ADVANCE(49); if (lookahead == '.') - ADVANCE(326); + ADVANCE(320); if (lookahead == '/') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5736,10 +5774,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(216); END_STATE(); - case 326: - if (lookahead == '.') - ADVANCE(61); - END_STATE(); case 327: if ((lookahead == '\t') || (lookahead == '\n') || @@ -5820,7 +5854,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == ' ')) SKIP(329); if (lookahead == '.') - ADVANCE(326); + ADVANCE(320); if (lookahead == '/') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5862,25 +5896,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(330); if (lookahead == '(') ADVANCE(48); - if (lookahead == '*') - ADVANCE(239); - if (lookahead == '/') - ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z') || - (lookahead == '_') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(91); - if (lookahead == '[') - ADVANCE(92); - END_STATE(); - case 331: - if ((lookahead == '\t') || - (lookahead == '\n') || - (lookahead == '\r') || - (lookahead == ' ')) - SKIP(331); - if (lookahead == '(') - ADVANCE(48); if (lookahead == ')') ADVANCE(49); if (lookahead == ',') @@ -5892,21 +5907,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); if (lookahead == '{') ADVANCE(229); END_STATE(); - case 332: + case 331: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 333: + case 332: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(333); + SKIP(332); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') @@ -5922,12 +5937,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(92); END_STATE(); - case 334: + case 333: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(334); + SKIP(333); if (lookahead == '/') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || @@ -5957,12 +5972,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 335: + case 334: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(335); + SKIP(334); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') @@ -5986,12 +6001,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(229); END_STATE(); - case 336: + case 335: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(336); + SKIP(335); if (lookahead == '(') ADVANCE(48); if (lookahead == '*') @@ -6007,12 +6022,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(91); END_STATE(); - case 337: + case 336: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(337); + SKIP(336); if (lookahead == '(') ADVANCE(48); if (lookahead == '*') @@ -6024,12 +6039,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(91); END_STATE(); - case 338: + case 337: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(338); + SKIP(337); if (lookahead == '(') ADVANCE(48); if (lookahead == ',') @@ -6043,12 +6058,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(92); END_STATE(); - case 339: + case 338: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(339); + SKIP(338); if (lookahead == ',') ADVANCE(55); if (lookahead == '/') @@ -6058,12 +6073,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); END_STATE(); - case 340: + case 339: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(340); + SKIP(339); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -6099,12 +6114,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(230); END_STATE(); - case 341: + case 340: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(341); + SKIP(340); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6159,12 +6174,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 342: + case 341: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(342); + SKIP(341); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -6205,12 +6220,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 343: + case 342: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(343); + SKIP(342); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -6248,12 +6263,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 344: + case 343: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(344); + SKIP(343); if (lookahead == ',') ADVANCE(55); if (lookahead == '/') @@ -6261,27 +6276,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 345: + case 344: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(345); + SKIP(344); if (lookahead == '.') ADVANCE(299); if (lookahead == '/') ADVANCE(242); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); END_STATE(); - case 346: + case 345: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(346); + SKIP(345); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -6316,12 +6331,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 347: + case 346: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(347); + SKIP(346); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6378,12 +6393,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 348: + case 347: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(348); + SKIP(347); if (lookahead == ')') ADVANCE(49); if (lookahead == '/') @@ -6391,27 +6406,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); END_STATE(); - case 349: + case 348: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(349); + SKIP(348); if (lookahead == ',') ADVANCE(55); if (lookahead == '/') ADVANCE(242); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '}') ADVANCE(233); END_STATE(); - case 350: + case 349: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(350); + SKIP(349); if (lookahead == '/') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || @@ -6421,12 +6436,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 351: + case 350: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(351); + SKIP(350); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6483,12 +6498,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 352: + case 351: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(352); + SKIP(351); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6543,12 +6558,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 353: + case 352: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(353); + SKIP(352); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6603,12 +6618,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 354: + case 353: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(354); + SKIP(353); if (lookahead == '(') ADVANCE(48); if (lookahead == ',') @@ -6618,18 +6633,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); if (lookahead == '{') ADVANCE(229); END_STATE(); - case 355: + case 354: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(355); + SKIP(354); if (lookahead == ',') ADVANCE(55); if (lookahead == '/') @@ -6637,12 +6652,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); END_STATE(); - case 356: + case 355: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(356); + SKIP(355); if (lookahead == '(') ADVANCE(48); if (lookahead == ',') @@ -6652,16 +6667,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); END_STATE(); - case 357: + case 356: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(357); + SKIP(356); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -6701,12 +6716,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(230); END_STATE(); - case 358: + case 357: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(358); + SKIP(357); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -6763,12 +6778,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 359: + case 358: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(359); + SKIP(358); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -6826,12 +6841,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 360: + case 359: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(360); + SKIP(359); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -6871,42 +6886,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(230); END_STATE(); - case 361: + case 360: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(361); + SKIP(360); if (lookahead == '/') ADVANCE(242); if (lookahead == 'w') + ADVANCE(361); + END_STATE(); + case 361: + if (lookahead == 'h') ADVANCE(362); END_STATE(); case 362: - if (lookahead == 'h') + if (lookahead == 'i') ADVANCE(363); END_STATE(); case 363: - if (lookahead == 'i') + if (lookahead == 'l') ADVANCE(364); END_STATE(); case 364: - if (lookahead == 'l') + if (lookahead == 'e') ADVANCE(365); END_STATE(); case 365: - if (lookahead == 'e') - ADVANCE(366); - END_STATE(); - case 366: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 367: + case 366: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(367); + SKIP(366); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -6942,12 +6957,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(230); END_STATE(); - case 368: + case 367: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(368); + SKIP(367); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -7002,40 +7017,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 369: + case 368: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(369); + SKIP(368); if (lookahead == '/') ADVANCE(242); if (lookahead == 'e') - ADVANCE(370); + ADVANCE(369); if (lookahead == 'w') - ADVANCE(362); + ADVANCE(361); END_STATE(); - case 370: + case 369: if (lookahead == 'l') + ADVANCE(370); + END_STATE(); + case 370: + if (lookahead == 's') ADVANCE(371); END_STATE(); case 371: - if (lookahead == 's') + if (lookahead == 'e') ADVANCE(372); END_STATE(); case 372: - if (lookahead == 'e') - ADVANCE(373); - END_STATE(); - case 373: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 374: + case 373: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(374); + SKIP(373); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -7081,12 +7096,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 375: + case 374: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(375); + SKIP(374); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -7158,12 +7173,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 376: + case 375: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(376); + SKIP(375); if (lookahead == '/') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7199,12 +7214,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(229); END_STATE(); - case 377: + case 376: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(377); + SKIP(376); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -7274,18 +7289,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 378: + case 377: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(378); + SKIP(377); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(379); + ADVANCE(378); if (lookahead == '&') ADVANCE(238); if (lookahead == '\'') @@ -7349,7 +7364,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 379: + case 378: if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'c') || ('f' <= lookahead && lookahead <= 'h') || @@ -7358,11 +7373,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(9); if (lookahead == 'e') - ADVANCE(380); + ADVANCE(379); if (lookahead == 'i') ADVANCE(23); END_STATE(); - case 380: + case 379: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -7373,46 +7388,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(19); END_STATE(); - case 381: + case 380: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(381); + SKIP(380); if (lookahead == '#') - ADVANCE(382); + ADVANCE(381); if (lookahead == '/') ADVANCE(242); END_STATE(); - case 382: + case 381: if (lookahead == 'e') + ADVANCE(382); + END_STATE(); + case 382: + if (lookahead == 'n') ADVANCE(383); END_STATE(); case 383: - if (lookahead == 'n') + if (lookahead == 'd') ADVANCE(384); END_STATE(); case 384: - if (lookahead == 'd') + if (lookahead == 'i') ADVANCE(385); END_STATE(); case 385: - if (lookahead == 'i') + if (lookahead == 'f') ADVANCE(386); END_STATE(); case 386: - if (lookahead == 'f') - ADVANCE(387); - END_STATE(); - case 387: ACCEPT_TOKEN(anon_sym_POUNDendif); END_STATE(); - case 388: + case 387: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(388); + SKIP(387); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -7482,18 +7497,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 389: + case 388: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(389); + SKIP(388); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(379); + ADVANCE(378); if (lookahead == '&') ADVANCE(238); if (lookahead == '\'') @@ -7557,13 +7572,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 390: + case 389: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(390); + SKIP(389); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -7609,16 +7624,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 391: + case 390: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 392: + case 391: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(392); + SKIP(391); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(298); if (lookahead == '\"') @@ -7666,13 +7681,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 393: + case 392: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(393); + SKIP(392); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -7706,13 +7721,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(230); END_STATE(); - case 394: + case 393: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(394); + SKIP(393); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -7765,35 +7780,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 395: + case 394: if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(396); + ADVANCE(395); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '\r') - SKIP(395); + SKIP(394); if (lookahead == '(') ADVANCE(48); if (lookahead == '/') ADVANCE(242); END_STATE(); - case 396: + case 395: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(396); + ADVANCE(395); END_STATE(); - case 397: + case 396: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(397); + SKIP(396); if (lookahead == ')') ADVANCE(49); if (lookahead == '.') - ADVANCE(326); + ADVANCE(320); if (lookahead == '/') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7801,13 +7816,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(91); END_STATE(); - case 398: + case 397: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(399); + ADVANCE(398); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '/') ADVANCE(263); if (lookahead == '\\') @@ -7821,12 +7836,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(269); END_STATE(); - case 399: + case 398: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(399); + ADVANCE(398); if (lookahead == '/') ADVANCE(263); if (lookahead == '\\') @@ -7840,24 +7855,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(269); END_STATE(); - case 400: + case 399: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(400); + SKIP(399); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '/') ADVANCE(242); END_STATE(); - case 401: + case 400: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(401); + SKIP(400); if (lookahead == '.') - ADVANCE(326); + ADVANCE(320); if (lookahead == '/') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || @@ -7865,14 +7880,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(91); END_STATE(); - case 402: + case 401: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(402); + SKIP(401); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -7942,12 +7957,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 403: + case 402: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(403); + SKIP(402); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -7967,7 +7982,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(241); if (lookahead == '.') - ADVANCE(326); + ADVANCE(320); if (lookahead == '/') ADVANCE(242); if (lookahead == '0') @@ -8011,12 +8026,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 404: + case 403: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(404); + SKIP(403); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -8080,57 +8095,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 405: + case 404: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(406); + ADVANCE(405); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') - ADVANCE(407); + ADVANCE(406); if (lookahead == '\"') - ADVANCE(408); + ADVANCE(407); if (lookahead == '#') - ADVANCE(411); + ADVANCE(410); if (lookahead == '%') - ADVANCE(442); + ADVANCE(441); if (lookahead == '&') - ADVANCE(443); + ADVANCE(442); if (lookahead == '\'') - ADVANCE(444); + ADVANCE(443); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') ADVANCE(49); if (lookahead == '*') - ADVANCE(449); + ADVANCE(448); if (lookahead == '+') - ADVANCE(450); + ADVANCE(449); if (lookahead == ',') ADVANCE(55); if (lookahead == '-') - ADVANCE(451); + ADVANCE(450); if (lookahead == '.') ADVANCE(299); if (lookahead == '/') - ADVANCE(452); + ADVANCE(451); if (lookahead == '0') - ADVANCE(453); + ADVANCE(452); if ('1' <= lookahead && lookahead <= '9') - ADVANCE(457); + ADVANCE(456); if (lookahead == ':') ADVANCE(78); if (lookahead == ';') ADVANCE(79); if (lookahead == '<') - ADVANCE(462); + ADVANCE(461); if (lookahead == '=') - ADVANCE(464); + ADVANCE(463); if (lookahead == '>') - ADVANCE(465); + ADVANCE(464); if (lookahead == '?') ADVANCE(90); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8140,7 +8155,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == '[') ADVANCE(92); if (lookahead == '\\') @@ -8148,41 +8163,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(93); if (lookahead == '^') - ADVANCE(468); + ADVANCE(467); if (lookahead == 'a') - ADVANCE(469); + ADVANCE(468); if (lookahead == 'b') - ADVANCE(473); + ADVANCE(472); if (lookahead == 'c') - ADVANCE(478); + ADVANCE(477); if (lookahead == 'd') - ADVANCE(491); + ADVANCE(490); if (lookahead == 'e') - ADVANCE(499); + ADVANCE(498); if (lookahead == 'f') - ADVANCE(511); + ADVANCE(510); if (lookahead == 'g') - ADVANCE(514); + ADVANCE(513); if (lookahead == 'i') - ADVANCE(518); + ADVANCE(517); if (lookahead == 'l') - ADVANCE(525); + ADVANCE(524); if (lookahead == 'r') - ADVANCE(529); + ADVANCE(528); if (lookahead == 's') - ADVANCE(547); + ADVANCE(546); if (lookahead == 't') - ADVANCE(571); + ADVANCE(570); if (lookahead == 'u') - ADVANCE(578); + ADVANCE(577); if (lookahead == 'v') - ADVANCE(589); + ADVANCE(588); if (lookahead == 'w') - ADVANCE(597); + ADVANCE(596); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') - ADVANCE(602); + ADVANCE(601); if (lookahead == '}') ADVANCE(233); if (lookahead == '~') @@ -8197,54 +8212,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '~'))) ADVANCE(269); END_STATE(); - case 406: + case 405: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - ADVANCE(406); + ADVANCE(405); if (lookahead == '!') - ADVANCE(407); + ADVANCE(406); if (lookahead == '\"') - ADVANCE(408); + ADVANCE(407); if (lookahead == '#') - ADVANCE(411); + ADVANCE(410); if (lookahead == '%') - ADVANCE(442); + ADVANCE(441); if (lookahead == '&') - ADVANCE(443); + ADVANCE(442); if (lookahead == '\'') - ADVANCE(444); + ADVANCE(443); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') ADVANCE(49); if (lookahead == '*') - ADVANCE(449); + ADVANCE(448); if (lookahead == '+') - ADVANCE(450); + ADVANCE(449); if (lookahead == ',') ADVANCE(55); if (lookahead == '-') - ADVANCE(451); + ADVANCE(450); if (lookahead == '.') ADVANCE(299); if (lookahead == '/') - ADVANCE(452); + ADVANCE(451); if (lookahead == '0') - ADVANCE(453); + ADVANCE(452); if ('1' <= lookahead && lookahead <= '9') - ADVANCE(457); + ADVANCE(456); if (lookahead == ':') ADVANCE(78); if (lookahead == ';') ADVANCE(79); if (lookahead == '<') - ADVANCE(462); + ADVANCE(461); if (lookahead == '=') - ADVANCE(464); + ADVANCE(463); if (lookahead == '>') - ADVANCE(465); + ADVANCE(464); if (lookahead == '?') ADVANCE(90); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8254,7 +8269,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == '[') ADVANCE(92); if (lookahead == '\\') @@ -8262,41 +8277,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(93); if (lookahead == '^') - ADVANCE(468); + ADVANCE(467); if (lookahead == 'a') - ADVANCE(469); + ADVANCE(468); if (lookahead == 'b') - ADVANCE(473); + ADVANCE(472); if (lookahead == 'c') - ADVANCE(478); + ADVANCE(477); if (lookahead == 'd') - ADVANCE(491); + ADVANCE(490); if (lookahead == 'e') - ADVANCE(499); + ADVANCE(498); if (lookahead == 'f') - ADVANCE(511); + ADVANCE(510); if (lookahead == 'g') - ADVANCE(514); + ADVANCE(513); if (lookahead == 'i') - ADVANCE(518); + ADVANCE(517); if (lookahead == 'l') - ADVANCE(525); + ADVANCE(524); if (lookahead == 'r') - ADVANCE(529); + ADVANCE(528); if (lookahead == 's') - ADVANCE(547); + ADVANCE(546); if (lookahead == 't') - ADVANCE(571); + ADVANCE(570); if (lookahead == 'u') - ADVANCE(578); + ADVANCE(577); if (lookahead == 'v') - ADVANCE(589); + ADVANCE(588); if (lookahead == 'w') - ADVANCE(597); + ADVANCE(596); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') - ADVANCE(602); + ADVANCE(601); if (lookahead == '}') ADVANCE(233); if (lookahead == '~') @@ -8311,63 +8326,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= '~'))) ADVANCE(269); END_STATE(); - case 407: + case 406: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(3); END_STATE(); - case 408: + case 407: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(409); + ADVANCE(408); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(408); + ADVANCE(407); END_STATE(); - case 409: + case 408: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(269); if (lookahead == '\\') - ADVANCE(410); + ADVANCE(409); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\\'))) - ADVANCE(408); + ADVANCE(407); END_STATE(); - case 410: + case 409: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(269); if (lookahead == '\"') ADVANCE(5); if (lookahead == '\\') - ADVANCE(409); + ADVANCE(408); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\"') || (lookahead == '\\'))) - ADVANCE(408); + ADVANCE(407); END_STATE(); - case 411: + case 410: ACCEPT_TOKEN(sym_preproc_arg); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'c') || ('f' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == '\\') ADVANCE(268); if (lookahead == 'd') - ADVANCE(413); + ADVANCE(412); if (lookahead == 'e') - ADVANCE(419); + ADVANCE(418); if (lookahead == 'i') - ADVANCE(427); + ADVANCE(426); if (!((lookahead == 0) || (lookahead == '\n') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8375,78 +8390,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z'))) ADVANCE(269); END_STATE(); - case 412: + case 411: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); END_STATE(); - case 413: + case 412: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'e') - ADVANCE(414); + ADVANCE(413); END_STATE(); - case 414: + case 413: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'f') - ADVANCE(415); + ADVANCE(414); END_STATE(); - case 415: + case 414: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'i') - ADVANCE(416); + ADVANCE(415); END_STATE(); - case 416: + case 415: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'n') - ADVANCE(417); + ADVANCE(416); END_STATE(); - case 417: + case 416: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'e') - ADVANCE(418); + ADVANCE(417); END_STATE(); - case 418: + case 417: ACCEPT_TOKEN(anon_sym_POUNDdefine); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); END_STATE(); - case 419: + case 418: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8454,84 +8469,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'k') || (lookahead == 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'l') - ADVANCE(420); + ADVANCE(419); if (lookahead == 'n') - ADVANCE(423); + ADVANCE(422); END_STATE(); - case 420: + case 419: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 's') - ADVANCE(421); + ADVANCE(420); END_STATE(); - case 421: + case 420: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'e') - ADVANCE(422); + ADVANCE(421); END_STATE(); - case 422: + case 421: ACCEPT_TOKEN(anon_sym_POUNDelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); END_STATE(); - case 423: + case 422: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'd') - ADVANCE(424); + ADVANCE(423); END_STATE(); - case 424: + case 423: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'i') - ADVANCE(425); + ADVANCE(424); END_STATE(); - case 425: + case 424: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'f') - ADVANCE(426); + ADVANCE(425); END_STATE(); - case 426: + case 425: ACCEPT_TOKEN(anon_sym_POUNDendif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); END_STATE(); - case 427: + case 426: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8539,13 +8554,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'f') - ADVANCE(428); + ADVANCE(427); if (lookahead == 'n') - ADVANCE(436); + ADVANCE(435); END_STATE(); - case 428: + case 427: ACCEPT_TOKEN(anon_sym_POUNDif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8553,84 +8568,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'd') - ADVANCE(429); + ADVANCE(428); if (lookahead == 'n') - ADVANCE(432); + ADVANCE(431); END_STATE(); - case 429: + case 428: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'e') - ADVANCE(430); + ADVANCE(429); END_STATE(); - case 430: + case 429: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'f') - ADVANCE(431); + ADVANCE(430); END_STATE(); - case 431: + case 430: ACCEPT_TOKEN(anon_sym_POUNDifdef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); END_STATE(); - case 432: + case 431: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'd') - ADVANCE(433); + ADVANCE(432); END_STATE(); - case 433: + case 432: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'e') - ADVANCE(434); + ADVANCE(433); END_STATE(); - case 434: + case 433: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'f') - ADVANCE(435); + ADVANCE(434); END_STATE(); - case 435: + case 434: ACCEPT_TOKEN(anon_sym_POUNDifndef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); END_STATE(); - case 436: + case 435: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -8638,103 +8653,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'c') - ADVANCE(437); + ADVANCE(436); END_STATE(); - case 437: + case 436: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'l') - ADVANCE(438); + ADVANCE(437); END_STATE(); - case 438: + case 437: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'u') - ADVANCE(439); + ADVANCE(438); END_STATE(); - case 439: + case 438: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'd') - ADVANCE(440); + ADVANCE(439); END_STATE(); - case 440: + case 439: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); if (lookahead == 'e') - ADVANCE(441); + ADVANCE(440); END_STATE(); - case 441: + case 440: ACCEPT_TOKEN(anon_sym_POUNDinclude); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(412); + ADVANCE(411); END_STATE(); - case 442: + case 441: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(39); END_STATE(); - case 443: + case 442: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(41); if (lookahead == '=') ADVANCE(42); END_STATE(); - case 444: + case 443: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(47); if (lookahead == '\'') ADVANCE(269); if (lookahead == '\\') - ADVANCE(445); + ADVANCE(444); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\'') || (lookahead == '\\'))) - ADVANCE(446); + ADVANCE(445); END_STATE(); - case 445: + case 444: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(446); + ADVANCE(445); if (lookahead == '\'') - ADVANCE(447); + ADVANCE(446); if (lookahead == '\\') - ADVANCE(448); + ADVANCE(447); if (!((lookahead == 0) || (lookahead == '\n') || (lookahead == '\'') || (lookahead == '\\'))) - ADVANCE(446); + ADVANCE(445); END_STATE(); - case 446: + case 445: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\'') ADVANCE(46); @@ -8746,12 +8761,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(269); END_STATE(); - case 447: + case 446: ACCEPT_TOKEN(sym_char_literal); if (lookahead == '\'') ADVANCE(46); END_STATE(); - case 448: + case 447: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(269); @@ -8765,19 +8780,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(269); END_STATE(); - case 449: + case 448: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') ADVANCE(51); END_STATE(); - case 450: + case 449: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(53); if (lookahead == '=') ADVANCE(54); END_STATE(); - case 451: + case 450: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(57); @@ -8786,7 +8801,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(59); END_STATE(); - case 452: + case 451: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(264); @@ -8795,29 +8810,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(68); END_STATE(); - case 453: + case 452: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(454); + ADVANCE(453); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(457); - if (lookahead == 'L') ADVANCE(456); + if (lookahead == 'L') + ADVANCE(455); if (lookahead == 'U') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'b') - ADVANCE(458); + ADVANCE(457); if (lookahead == 'l') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'u') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'x') - ADVANCE(460); + ADVANCE(459); END_STATE(); - case 454: + case 453: ACCEPT_TOKEN(sym_preproc_arg); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(455); + ADVANCE(454); if (lookahead == '\\') ADVANCE(268); if (!((lookahead == 0) || @@ -8826,50 +8841,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(269); END_STATE(); - case 455: + case 454: ACCEPT_TOKEN(sym_number_literal); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(455); + ADVANCE(454); if (lookahead == 'L') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'U') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'l') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'u') - ADVANCE(456); + ADVANCE(455); END_STATE(); - case 456: + case 455: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'L') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'U') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'l') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'u') - ADVANCE(456); + ADVANCE(455); END_STATE(); - case 457: + case 456: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '.') - ADVANCE(454); + ADVANCE(453); if ('0' <= lookahead && lookahead <= '9') - ADVANCE(457); - if (lookahead == 'L') ADVANCE(456); + if (lookahead == 'L') + ADVANCE(455); if (lookahead == 'U') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'l') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'u') - ADVANCE(456); + ADVANCE(455); END_STATE(); - case 458: + case 457: ACCEPT_TOKEN(sym_preproc_arg); if ((lookahead == '0') || (lookahead == '1')) - ADVANCE(459); + ADVANCE(458); if (lookahead == '\\') ADVANCE(268); if (!((lookahead == 0) || @@ -8879,326 +8894,326 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == '\\'))) ADVANCE(269); END_STATE(); - case 459: + case 458: ACCEPT_TOKEN(sym_number_literal); if ((lookahead == '0') || (lookahead == '1')) - ADVANCE(459); + ADVANCE(458); if (lookahead == 'L') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'U') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'l') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'u') - ADVANCE(456); + ADVANCE(455); END_STATE(); - case 460: + case 459: ACCEPT_TOKEN(sym_preproc_arg); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || (']' <= lookahead && lookahead <= 'f')) - ADVANCE(461); + ADVANCE(460); if (lookahead == '\\') - ADVANCE(461); + ADVANCE(460); if (!((lookahead == 0) || (lookahead == '\n') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'f'))) ADVANCE(269); END_STATE(); - case 461: + case 460: ACCEPT_TOKEN(sym_number_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'K') || ('M' <= lookahead && lookahead <= 'T') || ('V' <= lookahead && lookahead <= '[') || (']' <= lookahead && lookahead <= 'f')) - ADVANCE(461); + ADVANCE(460); if (lookahead == 'L') - ADVANCE(461); + ADVANCE(460); if (lookahead == 'U') - ADVANCE(461); + ADVANCE(460); if (lookahead == '\\') - ADVANCE(461); + ADVANCE(460); if (lookahead == 'l') - ADVANCE(456); + ADVANCE(455); if (lookahead == 'u') - ADVANCE(456); + ADVANCE(455); END_STATE(); - case 462: + case 461: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') - ADVANCE(463); + ADVANCE(462); if (lookahead == '=') ADVANCE(83); END_STATE(); - case 463: + case 462: ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(82); END_STATE(); - case 464: + case 463: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(85); END_STATE(); - case 465: + case 464: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(87); if (lookahead == '>') - ADVANCE(466); + ADVANCE(465); END_STATE(); - case 466: + case 465: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '=') ADVANCE(89); END_STATE(); - case 467: + case 466: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 468: + case 467: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') ADVANCE(95); END_STATE(); - case 469: + case 468: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(470); + ADVANCE(469); END_STATE(); - case 470: + case 469: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(471); + ADVANCE(470); END_STATE(); - case 471: + case 470: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(472); + ADVANCE(471); END_STATE(); - case 472: + case 471: ACCEPT_TOKEN(anon_sym_auto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 473: + case 472: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(474); + ADVANCE(473); END_STATE(); - case 474: + case 473: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(475); + ADVANCE(474); END_STATE(); - case 475: + case 474: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'a') - ADVANCE(476); + ADVANCE(475); END_STATE(); - case 476: + case 475: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'j') || ('l' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'k') - ADVANCE(477); + ADVANCE(476); END_STATE(); - case 477: + case 476: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 478: + case 477: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'a') - ADVANCE(479); + ADVANCE(478); if (lookahead == 'o') - ADVANCE(482); + ADVANCE(481); END_STATE(); - case 479: + case 478: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 's') - ADVANCE(480); + ADVANCE(479); END_STATE(); - case 480: + case 479: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(481); + ADVANCE(480); END_STATE(); - case 481: + case 480: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 482: + case 481: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(483); + ADVANCE(482); END_STATE(); - case 483: + case 482: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 's') - ADVANCE(484); + ADVANCE(483); if (lookahead == 't') - ADVANCE(486); + ADVANCE(485); END_STATE(); - case 484: + case 483: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(485); + ADVANCE(484); END_STATE(); - case 485: + case 484: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 486: + case 485: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(487); + ADVANCE(486); END_STATE(); - case 487: + case 486: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(488); + ADVANCE(487); END_STATE(); - case 488: + case 487: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(489); + ADVANCE(488); END_STATE(); - case 489: + case 488: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(490); + ADVANCE(489); END_STATE(); - case 490: + case 489: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 491: + case 490: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9206,83 +9221,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(492); + ADVANCE(491); if (lookahead == 'o') - ADVANCE(498); + ADVANCE(497); END_STATE(); - case 492: + case 491: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'f') - ADVANCE(493); + ADVANCE(492); END_STATE(); - case 493: + case 492: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'a') - ADVANCE(494); + ADVANCE(493); END_STATE(); - case 494: + case 493: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(495); + ADVANCE(494); END_STATE(); - case 495: + case 494: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(496); + ADVANCE(495); END_STATE(); - case 496: + case 495: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(497); + ADVANCE(496); END_STATE(); - case 497: + case 496: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 498: + case 497: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 499: + case 498: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9292,198 +9307,198 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'w') || (lookahead == 'y') || (lookahead == 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(500); + ADVANCE(499); if (lookahead == 'n') - ADVANCE(503); + ADVANCE(502); if (lookahead == 'x') - ADVANCE(506); + ADVANCE(505); END_STATE(); - case 500: + case 499: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 's') - ADVANCE(501); + ADVANCE(500); END_STATE(); - case 501: + case 500: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(502); + ADVANCE(501); END_STATE(); - case 502: + case 501: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 503: + case 502: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(504); + ADVANCE(503); END_STATE(); - case 504: + case 503: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'l') || ('n' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'm') - ADVANCE(505); + ADVANCE(504); END_STATE(); - case 505: + case 504: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 506: + case 505: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(507); + ADVANCE(506); END_STATE(); - case 507: + case 506: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(508); + ADVANCE(507); END_STATE(); - case 508: + case 507: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(509); + ADVANCE(508); END_STATE(); - case 509: + case 508: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(510); + ADVANCE(509); END_STATE(); - case 510: + case 509: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 511: + case 510: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(512); + ADVANCE(511); END_STATE(); - case 512: + case 511: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(513); + ADVANCE(512); END_STATE(); - case 513: + case 512: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 514: + case 513: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(515); + ADVANCE(514); END_STATE(); - case 515: + case 514: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(516); + ADVANCE(515); END_STATE(); - case 516: + 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(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(517); + ADVANCE(516); END_STATE(); - case 517: + case 516: ACCEPT_TOKEN(anon_sym_goto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 518: + case 517: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9491,125 +9506,125 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'f') - ADVANCE(519); + ADVANCE(518); if (lookahead == 'n') - ADVANCE(520); + ADVANCE(519); END_STATE(); - case 519: + case 518: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 520: + case 519: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(521); + ADVANCE(520); END_STATE(); - case 521: + 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(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(522); + ADVANCE(521); END_STATE(); - case 522: + case 521: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(523); + ADVANCE(522); END_STATE(); - case 523: + case 522: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(524); + ADVANCE(523); END_STATE(); - case 524: + case 523: ACCEPT_TOKEN(sym_function_specifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 525: + case 524: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(526); + ADVANCE(525); END_STATE(); - case 526: + case 525: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(527); + ADVANCE(526); END_STATE(); - case 527: + case 526: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'g') - ADVANCE(528); + ADVANCE(527); END_STATE(); - case 528: + case 527: ACCEPT_TOKEN(anon_sym_long); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 529: + case 528: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(530); + ADVANCE(529); END_STATE(); - case 530: + case 529: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9617,111 +9632,111 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'r') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'g') - ADVANCE(531); + ADVANCE(530); if (lookahead == 's') - ADVANCE(537); + ADVANCE(536); if (lookahead == 't') - ADVANCE(543); + ADVANCE(542); END_STATE(); - case 531: + case 530: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(532); + ADVANCE(531); END_STATE(); - case 532: + case 531: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 's') - ADVANCE(533); + ADVANCE(532); END_STATE(); - case 533: + case 532: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(534); + ADVANCE(533); END_STATE(); - case 534: + case 533: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(535); + ADVANCE(534); END_STATE(); - case 535: + case 534: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(536); + ADVANCE(535); END_STATE(); - case 536: + case 535: ACCEPT_TOKEN(anon_sym_register); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 537: + case 536: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(538); + ADVANCE(537); END_STATE(); - case 538: + case 537: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(539); + ADVANCE(538); END_STATE(); - case 539: + case 538: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(540); + ADVANCE(539); END_STATE(); - case 540: + case 539: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9729,71 +9744,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'c') - ADVANCE(541); + ADVANCE(540); END_STATE(); - case 541: + case 540: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(542); + ADVANCE(541); END_STATE(); - case 542: + case 541: ACCEPT_TOKEN(anon_sym_restrict); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 543: + case 542: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(544); + ADVANCE(543); END_STATE(); - case 544: + case 543: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(545); + ADVANCE(544); END_STATE(); - case 545: + case 544: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(546); + ADVANCE(545); END_STATE(); - case 546: + case 545: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 547: + case 546: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9803,144 +9818,144 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'u') || (lookahead == 'v') || ('x' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'h') - ADVANCE(548); + ADVANCE(547); if (lookahead == 'i') - ADVANCE(552); + ADVANCE(551); if (lookahead == 't') - ADVANCE(557); + ADVANCE(556); if (lookahead == 'w') - ADVANCE(566); + ADVANCE(565); END_STATE(); - case 548: + case 547: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(549); + ADVANCE(548); END_STATE(); - case 549: + case 548: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(550); + ADVANCE(549); END_STATE(); - case 550: + case 549: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(551); + ADVANCE(550); END_STATE(); - case 551: + case 550: ACCEPT_TOKEN(anon_sym_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 552: + case 551: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'y')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'z') - ADVANCE(553); + ADVANCE(552); END_STATE(); - case 553: + case 552: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(554); + ADVANCE(553); END_STATE(); - case 554: + case 553: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(555); + ADVANCE(554); END_STATE(); - case 555: + case 554: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'f') - ADVANCE(556); + ADVANCE(555); END_STATE(); - case 556: + case 555: ACCEPT_TOKEN(anon_sym_sizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 557: + case 556: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'q') || ('s' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'a') - ADVANCE(558); + ADVANCE(557); if (lookahead == 'r') - ADVANCE(562); + ADVANCE(561); END_STATE(); - case 558: + case 557: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(559); + ADVANCE(558); END_STATE(); - case 559: + case 558: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(560); + ADVANCE(559); END_STATE(); - case 560: + case 559: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9948,30 +9963,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'c') - ADVANCE(561); + ADVANCE(560); END_STATE(); - case 561: + case 560: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 562: + case 561: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 't') || ('v' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(563); + ADVANCE(562); END_STATE(); - case 563: + case 562: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -9979,52 +9994,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'c') - ADVANCE(564); + ADVANCE(563); END_STATE(); - case 564: + case 563: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(565); + ADVANCE(564); END_STATE(); - case 565: + case 564: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 566: + case 565: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(567); + ADVANCE(566); END_STATE(); - case 567: + case 566: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(568); + ADVANCE(567); END_STATE(); - case 568: + case 567: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10032,115 +10047,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == 'a') || (lookahead == 'b') || ('d' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'c') - ADVANCE(569); + ADVANCE(568); END_STATE(); - case 569: + case 568: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'h') - ADVANCE(570); + ADVANCE(569); END_STATE(); - case 570: + case 569: ACCEPT_TOKEN(anon_sym_switch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 571: + case 570: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'x') || (lookahead == 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'y') - ADVANCE(572); + ADVANCE(571); END_STATE(); - case 572: + case 571: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'o') || ('q' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'p') - ADVANCE(573); + ADVANCE(572); END_STATE(); - case 573: + case 572: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(574); + ADVANCE(573); END_STATE(); - case 574: + case 573: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'd') - ADVANCE(575); + ADVANCE(574); END_STATE(); - case 575: + case 574: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(576); + ADVANCE(575); END_STATE(); - case 576: + case 575: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'e') || ('g' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'f') - ADVANCE(577); + ADVANCE(576); END_STATE(); - case 577: + case 576: ACCEPT_TOKEN(anon_sym_typedef); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 578: + case 577: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(579); + ADVANCE(578); END_STATE(); - case 579: + case 578: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -10148,256 +10163,256 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'r') || ('t' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(580); + ADVANCE(579); if (lookahead == 's') - ADVANCE(583); + ADVANCE(582); END_STATE(); - case 580: + case 579: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(581); + ADVANCE(580); END_STATE(); - case 581: + case 580: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(582); + ADVANCE(581); END_STATE(); - case 582: + case 581: ACCEPT_TOKEN(anon_sym_union); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 583: + case 582: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(584); + ADVANCE(583); END_STATE(); - case 584: + case 583: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'f') || ('h' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'g') - ADVANCE(585); + ADVANCE(584); END_STATE(); - case 585: + case 584: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(586); + ADVANCE(585); END_STATE(); - case 586: + case 585: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(587); + ADVANCE(586); END_STATE(); - case 587: + case 586: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'c') || ('e' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'd') - ADVANCE(588); + ADVANCE(587); END_STATE(); - case 588: + case 587: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 589: + case 588: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'n') || ('p' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(590); + ADVANCE(589); END_STATE(); - case 590: + case 589: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(591); + ADVANCE(590); END_STATE(); - case 591: + case 590: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'a') - ADVANCE(592); + ADVANCE(591); END_STATE(); - case 592: + case 591: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 's') || ('u' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 't') - ADVANCE(593); + ADVANCE(592); END_STATE(); - case 593: + case 592: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(594); + ADVANCE(593); END_STATE(); - case 594: + case 593: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(595); + ADVANCE(594); END_STATE(); - case 595: + case 594: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(596); + ADVANCE(595); END_STATE(); - case 596: + case 595: ACCEPT_TOKEN(anon_sym_volatile); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 597: + case 596: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'g') || ('i' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'h') - ADVANCE(598); + ADVANCE(597); END_STATE(); - case 598: + case 597: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'h') || ('j' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'i') - ADVANCE(599); + ADVANCE(598); END_STATE(); - case 599: + case 598: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'k') || ('m' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(600); + ADVANCE(599); END_STATE(); - case 600: + case 599: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(601); + ADVANCE(600); END_STATE(); - case 601: + case 600: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(467); + ADVANCE(466); END_STATE(); - case 602: + case 601: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '=') ADVANCE(231); if (lookahead == '|') ADVANCE(232); END_STATE(); - case 603: + case 602: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(603); + SKIP(602); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -10471,12 +10486,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 604: + case 603: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(604); + SKIP(603); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -10552,15 +10567,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 605: + case 604: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(605); + SKIP(604); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10658,12 +10673,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 606: + case 605: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(606); + SKIP(605); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -10702,13 +10717,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 607: + case 606: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(607); + SKIP(606); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -10756,13 +10771,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 608: + case 607: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(608); + SKIP(607); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10825,15 +10840,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 609: + case 608: if (lookahead == 0) ADVANCE(1); if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(609); + SKIP(608); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -10931,14 +10946,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 610: + case 609: if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(611); + ADVANCE(610); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '\r') - SKIP(610); + SKIP(609); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11036,19 +11051,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 611: + case 610: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); if ((lookahead == '\t') || (lookahead == ' ')) - ADVANCE(611); + ADVANCE(610); END_STATE(); - case 612: + case 611: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(612); + SKIP(611); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11133,12 +11148,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 613: + case 612: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(613); + SKIP(612); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -11184,12 +11199,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(230); END_STATE(); - case 614: + case 613: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(614); + SKIP(613); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') @@ -11209,13 +11224,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(92); END_STATE(); - case 615: + case 614: if ((lookahead == '\t') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(615); + SKIP(614); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11280,12 +11295,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 616: + case 615: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(616); + SKIP(615); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -11325,12 +11340,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(230); END_STATE(); - case 617: + case 616: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(617); + SKIP(616); if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -11389,12 +11404,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 618: + case 617: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(618); + SKIP(617); if (lookahead == '(') ADVANCE(48); if (lookahead == ',') @@ -11406,16 +11421,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); END_STATE(); - case 619: + case 618: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(619); + SKIP(618); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') @@ -11435,12 +11450,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(92); END_STATE(); - case 620: + case 619: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(620); + SKIP(619); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') @@ -11452,18 +11467,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); if (lookahead == '{') ADVANCE(229); END_STATE(); - case 621: + case 620: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(621); + SKIP(620); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -11483,7 +11498,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(241); if (lookahead == '.') - ADVANCE(326); + ADVANCE(320); if (lookahead == '/') ADVANCE(242); if (lookahead == '0') @@ -11517,12 +11532,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 622: + case 621: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(622); + SKIP(621); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -11600,12 +11615,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 623: + case 622: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(623); + SKIP(622); if (lookahead == '(') ADVANCE(48); if (lookahead == ',') @@ -11617,18 +11632,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); if (lookahead == '{') ADVANCE(229); END_STATE(); - case 624: + case 623: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(624); + SKIP(623); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -11673,12 +11688,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 625: + case 624: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(625); + SKIP(624); if (lookahead == ',') ADVANCE(55); if (lookahead == '/') @@ -11688,12 +11703,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(233); END_STATE(); - case 626: + case 625: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(626); + SKIP(625); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -11704,12 +11719,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(43); if (lookahead == '(') ADVANCE(48); + if (lookahead == ')') + ADVANCE(49); if (lookahead == '*') ADVANCE(239); if (lookahead == '+') ADVANCE(240); if (lookahead == '-') ADVANCE(241); + if (lookahead == '.') + ADVANCE(320); if (lookahead == '/') ADVANCE(242); if (lookahead == '0') @@ -11718,26 +11737,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || (lookahead == '_') || - (lookahead == 'a') || (lookahead == 'b') || (lookahead == 'd') || - ('f' <= lookahead && lookahead <= 'k') || + ('f' <= lookahead && lookahead <= 'h') || + (lookahead == 'j') || + (lookahead == 'k') || ('m' <= lookahead && lookahead <= 'q') || - (lookahead == 't') || ('w' <= lookahead && lookahead <= 'z')) ADVANCE(91); if (lookahead == '[') ADVANCE(92); + if (lookahead == 'a') + ADVANCE(96); if (lookahead == 'c') ADVANCE(251); if (lookahead == 'e') - ADVANCE(254); + ADVANCE(243); + if (lookahead == 'i') + ADVANCE(272); if (lookahead == 'l') ADVANCE(152); if (lookahead == 'r') - ADVANCE(255); + ADVANCE(273); if (lookahead == 's') - ADVANCE(257); + ADVANCE(279); + if (lookahead == 't') + ADVANCE(198); if (lookahead == 'u') ADVANCE(205); if (lookahead == 'v') @@ -11745,12 +11770,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); - case 627: + case 626: if ((lookahead == '\t') || (lookahead == '\n') || (lookahead == '\r') || (lookahead == ' ')) - SKIP(627); + SKIP(626); if (lookahead == '!') ADVANCE(236); if (lookahead == '\"') @@ -11787,6 +11812,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(234); END_STATE(); + case 627: + if ((lookahead == '\t') || + (lookahead == '\n') || + (lookahead == '\r') || + (lookahead == ' ')) + SKIP(627); + if (lookahead == '!') + ADVANCE(298); + if (lookahead == '%') + ADVANCE(38); + if (lookahead == '&') + ADVANCE(40); + if (lookahead == '(') + ADVANCE(48); + if (lookahead == ')') + ADVANCE(49); + if (lookahead == '*') + ADVANCE(50); + if (lookahead == '+') + ADVANCE(52); + if (lookahead == ',') + ADVANCE(55); + if (lookahead == '-') + ADVANCE(56); + if (lookahead == '.') + ADVANCE(299); + if (lookahead == '/') + ADVANCE(63); + if (lookahead == '<') + ADVANCE(80); + if (lookahead == '=') + ADVANCE(84); + if (lookahead == '>') + ADVANCE(86); + if (lookahead == '?') + ADVANCE(90); + if (('A' <= lookahead && lookahead <= 'Z') || + (lookahead == '_') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(91); + if (lookahead == '[') + ADVANCE(92); + if (lookahead == '^') + ADVANCE(94); + if (lookahead == '|') + ADVANCE(230); + END_STATE(); case 628: if ((lookahead == '\t') || (lookahead == '\n') || @@ -11981,7 +12053,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == ' ')) SKIP(631); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(298); if (lookahead == '%') @@ -12252,39 +12324,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead == ' ')) ADVANCE(637); if (lookahead == '\n') - ADVANCE(391); + ADVANCE(390); if (lookahead == '!') ADVANCE(638); if (lookahead == '%') - ADVANCE(442); + ADVANCE(441); if (lookahead == '&') - ADVANCE(443); + ADVANCE(442); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') ADVANCE(49); if (lookahead == '*') - ADVANCE(449); + ADVANCE(448); if (lookahead == '+') - ADVANCE(450); + ADVANCE(449); if (lookahead == ',') ADVANCE(55); if (lookahead == '-') - ADVANCE(451); + ADVANCE(450); if (lookahead == '.') ADVANCE(299); if (lookahead == '/') - ADVANCE(452); + ADVANCE(451); if (lookahead == ':') ADVANCE(78); if (lookahead == ';') ADVANCE(79); if (lookahead == '<') - ADVANCE(462); + ADVANCE(461); if (lookahead == '=') - ADVANCE(464); + ADVANCE(463); if (lookahead == '>') - ADVANCE(465); + ADVANCE(464); if (lookahead == '?') ADVANCE(90); if (lookahead == '[') @@ -12294,11 +12366,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(93); if (lookahead == '^') - ADVANCE(468); + ADVANCE(467); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') - ADVANCE(602); + ADVANCE(601); if (lookahead == '}') ADVANCE(233); if (!((lookahead == 0) || @@ -12324,35 +12396,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(638); if (lookahead == '%') - ADVANCE(442); + ADVANCE(441); if (lookahead == '&') - ADVANCE(443); + ADVANCE(442); if (lookahead == '(') ADVANCE(48); if (lookahead == ')') ADVANCE(49); if (lookahead == '*') - ADVANCE(449); + ADVANCE(448); if (lookahead == '+') - ADVANCE(450); + ADVANCE(449); if (lookahead == ',') ADVANCE(55); if (lookahead == '-') - ADVANCE(451); + ADVANCE(450); if (lookahead == '.') ADVANCE(299); if (lookahead == '/') - ADVANCE(452); + ADVANCE(451); if (lookahead == ':') ADVANCE(78); if (lookahead == ';') ADVANCE(79); if (lookahead == '<') - ADVANCE(462); + ADVANCE(461); if (lookahead == '=') - ADVANCE(464); + ADVANCE(463); if (lookahead == '>') - ADVANCE(465); + ADVANCE(464); if (lookahead == '?') ADVANCE(90); if (lookahead == '[') @@ -12362,11 +12434,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ']') ADVANCE(93); if (lookahead == '^') - ADVANCE(468); + ADVANCE(467); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') - ADVANCE(602); + ADVANCE(601); if (lookahead == '}') ADVANCE(233); if (!((lookahead == 0) || @@ -12461,7 +12533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(79); if (lookahead == '=') - ADVANCE(332); + ADVANCE(331); if (lookahead == '[') ADVANCE(92); END_STATE(); @@ -12682,24 +12754,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [208] = {.lex_state = 315}, [209] = {.lex_state = 319}, [210] = {.lex_state = 315}, - [211] = {.lex_state = 320}, - [212] = {.lex_state = 323}, - [213] = {.lex_state = 324}, - [214] = {.lex_state = 325}, - [215] = {.lex_state = 320}, + [211] = {.lex_state = 321}, + [212] = {.lex_state = 324}, + [213] = {.lex_state = 325}, + [214] = {.lex_state = 326}, + [215] = {.lex_state = 321}, [216] = {.lex_state = 327}, - [217] = {.lex_state = 324}, + [217] = {.lex_state = 325}, [218] = {.lex_state = 311}, - [219] = {.lex_state = 320}, + [219] = {.lex_state = 321}, [220] = {.lex_state = 259}, - [221] = {.lex_state = 324}, + [221] = {.lex_state = 325}, [222] = {.lex_state = 311}, - [223] = {.lex_state = 324}, + [223] = {.lex_state = 325}, [224] = {.lex_state = 311}, - [225] = {.lex_state = 324}, + [225] = {.lex_state = 325}, [226] = {.lex_state = 327}, [227] = {.lex_state = 313}, - [228] = {.lex_state = 324}, + [228] = {.lex_state = 325}, [229] = {.lex_state = 304}, [230] = {.lex_state = 328}, [231] = {.lex_state = 316}, @@ -12708,82 +12780,82 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [234] = {.lex_state = 329}, [235] = {.lex_state = 313}, [236] = {.lex_state = 313}, - [237] = {.lex_state = 324}, - [238] = {.lex_state = 330}, + [237] = {.lex_state = 325}, + [238] = {.lex_state = 319}, [239] = {.lex_state = 328}, - [240] = {.lex_state = 331}, - [241] = {.lex_state = 324}, - [242] = {.lex_state = 324}, - [243] = {.lex_state = 325}, - [244] = {.lex_state = 320}, - [245] = {.lex_state = 327}, - [246] = {.lex_state = 331}, - [247] = {.lex_state = 311}, - [248] = {.lex_state = 320}, - [249] = {.lex_state = 259}, - [250] = {.lex_state = 331}, - [251] = {.lex_state = 311}, - [252] = {.lex_state = 331}, - [253] = {.lex_state = 311}, - [254] = {.lex_state = 331}, - [255] = {.lex_state = 327}, - [256] = {.lex_state = 331}, - [257] = {.lex_state = 316}, - [258] = {.lex_state = 331}, - [259] = {.lex_state = 327}, - [260] = {.lex_state = 324}, - [261] = {.lex_state = 311}, - [262] = {.lex_state = 320}, - [263] = {.lex_state = 259}, - [264] = {.lex_state = 327}, - [265] = {.lex_state = 331}, - [266] = {.lex_state = 324}, - [267] = {.lex_state = 333}, - [268] = {.lex_state = 323}, - [269] = {.lex_state = 323}, - [270] = {.lex_state = 324}, - [271] = {.lex_state = 331}, - [272] = {.lex_state = 328}, - [273] = {.lex_state = 324}, - [274] = {.lex_state = 324}, - [275] = {.lex_state = 317}, - [276] = {.lex_state = 316}, - [277] = {.lex_state = 307}, - [278] = {.lex_state = 334}, - [279] = {.lex_state = 335}, - [280] = {.lex_state = 334}, - [281] = {.lex_state = 307}, - [282] = {.lex_state = 336}, + [240] = {.lex_state = 330}, + [241] = {.lex_state = 325}, + [242] = {.lex_state = 325}, + [243] = {.lex_state = 330}, + [244] = {.lex_state = 326}, + [245] = {.lex_state = 321}, + [246] = {.lex_state = 327}, + [247] = {.lex_state = 330}, + [248] = {.lex_state = 311}, + [249] = {.lex_state = 321}, + [250] = {.lex_state = 259}, + [251] = {.lex_state = 330}, + [252] = {.lex_state = 311}, + [253] = {.lex_state = 330}, + [254] = {.lex_state = 311}, + [255] = {.lex_state = 330}, + [256] = {.lex_state = 327}, + [257] = {.lex_state = 330}, + [258] = {.lex_state = 316}, + [259] = {.lex_state = 330}, + [260] = {.lex_state = 327}, + [261] = {.lex_state = 325}, + [262] = {.lex_state = 311}, + [263] = {.lex_state = 321}, + [264] = {.lex_state = 259}, + [265] = {.lex_state = 327}, + [266] = {.lex_state = 330}, + [267] = {.lex_state = 325}, + [268] = {.lex_state = 325}, + [269] = {.lex_state = 332}, + [270] = {.lex_state = 328}, + [271] = {.lex_state = 324}, + [272] = {.lex_state = 324}, + [273] = {.lex_state = 316}, + [274] = {.lex_state = 325}, + [275] = {.lex_state = 330}, + [276] = {.lex_state = 317}, + [277] = {.lex_state = 316}, + [278] = {.lex_state = 307}, + [279] = {.lex_state = 328}, + [280] = {.lex_state = 325}, + [281] = {.lex_state = 325}, + [282] = {.lex_state = 333}, [283] = {.lex_state = 334}, - [284] = {.lex_state = 317}, - [285] = {.lex_state = 334}, - [286] = {.lex_state = 307}, - [287] = {.lex_state = 334}, - [288] = {.lex_state = 336}, - [289] = {.lex_state = 337}, - [290] = {.lex_state = 334}, - [291] = {.lex_state = 337}, - [292] = {.lex_state = 259}, - [293] = {.lex_state = 338}, - [294] = {.lex_state = 337}, - [295] = {.lex_state = 334}, + [284] = {.lex_state = 333}, + [285] = {.lex_state = 307}, + [286] = {.lex_state = 335}, + [287] = {.lex_state = 333}, + [288] = {.lex_state = 317}, + [289] = {.lex_state = 333}, + [290] = {.lex_state = 307}, + [291] = {.lex_state = 333}, + [292] = {.lex_state = 335}, + [293] = {.lex_state = 336}, + [294] = {.lex_state = 333}, + [295] = {.lex_state = 336}, [296] = {.lex_state = 259}, - [297] = {.lex_state = 339}, - [298] = {.lex_state = 337}, - [299] = {.lex_state = 334}, + [297] = {.lex_state = 337}, + [298] = {.lex_state = 336}, + [299] = {.lex_state = 333}, [300] = {.lex_state = 259}, - [301] = {.lex_state = 250}, - [302] = {.lex_state = 259}, - [303] = {.lex_state = 259}, + [301] = {.lex_state = 338}, + [302] = {.lex_state = 336}, + [303] = {.lex_state = 333}, [304] = {.lex_state = 259}, - [305] = {.lex_state = 259}, + [305] = {.lex_state = 250}, [306] = {.lex_state = 259}, - [307] = {.lex_state = 340}, - [308] = {.lex_state = 334}, + [307] = {.lex_state = 259}, + [308] = {.lex_state = 259}, [309] = {.lex_state = 259}, [310] = {.lex_state = 259}, - [311] = {.lex_state = 259}, - [312] = {.lex_state = 259}, + [311] = {.lex_state = 339}, + [312] = {.lex_state = 333}, [313] = {.lex_state = 259}, [314] = {.lex_state = 259}, [315] = {.lex_state = 259}, @@ -12792,48 +12864,48 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [318] = {.lex_state = 259}, [319] = {.lex_state = 259}, [320] = {.lex_state = 259}, - [321] = {.lex_state = 340}, - [322] = {.lex_state = 340}, - [323] = {.lex_state = 340}, - [324] = {.lex_state = 340}, - [325] = {.lex_state = 340}, - [326] = {.lex_state = 340}, - [327] = {.lex_state = 340}, - [328] = {.lex_state = 340}, - [329] = {.lex_state = 340}, - [330] = {.lex_state = 340}, - [331] = {.lex_state = 310}, - [332] = {.lex_state = 259}, - [333] = {.lex_state = 340}, - [334] = {.lex_state = 250}, - [335] = {.lex_state = 340}, - [336] = {.lex_state = 316}, - [337] = {.lex_state = 341}, - [338] = {.lex_state = 342}, - [339] = {.lex_state = 297}, - [340] = {.lex_state = 297}, - [341] = {.lex_state = 250}, - [342] = {.lex_state = 297}, - [343] = {.lex_state = 259}, - [344] = {.lex_state = 259}, - [345] = {.lex_state = 259}, - [346] = {.lex_state = 259}, + [321] = {.lex_state = 259}, + [322] = {.lex_state = 259}, + [323] = {.lex_state = 259}, + [324] = {.lex_state = 259}, + [325] = {.lex_state = 339}, + [326] = {.lex_state = 339}, + [327] = {.lex_state = 339}, + [328] = {.lex_state = 339}, + [329] = {.lex_state = 339}, + [330] = {.lex_state = 339}, + [331] = {.lex_state = 339}, + [332] = {.lex_state = 339}, + [333] = {.lex_state = 339}, + [334] = {.lex_state = 339}, + [335] = {.lex_state = 310}, + [336] = {.lex_state = 259}, + [337] = {.lex_state = 339}, + [338] = {.lex_state = 250}, + [339] = {.lex_state = 339}, + [340] = {.lex_state = 316}, + [341] = {.lex_state = 340}, + [342] = {.lex_state = 341}, + [343] = {.lex_state = 297}, + [344] = {.lex_state = 297}, + [345] = {.lex_state = 250}, + [346] = {.lex_state = 297}, [347] = {.lex_state = 259}, [348] = {.lex_state = 259}, - [349] = {.lex_state = 249}, - [350] = {.lex_state = 343}, - [351] = {.lex_state = 344}, - [352] = {.lex_state = 344}, - [353] = {.lex_state = 345}, - [354] = {.lex_state = 345}, - [355] = {.lex_state = 346}, - [356] = {.lex_state = 345}, - [357] = {.lex_state = 343}, + [349] = {.lex_state = 259}, + [350] = {.lex_state = 259}, + [351] = {.lex_state = 259}, + [352] = {.lex_state = 259}, + [353] = {.lex_state = 249}, + [354] = {.lex_state = 342}, + [355] = {.lex_state = 343}, + [356] = {.lex_state = 343}, + [357] = {.lex_state = 344}, [358] = {.lex_state = 344}, - [359] = {.lex_state = 259}, - [360] = {.lex_state = 259}, - [361] = {.lex_state = 259}, - [362] = {.lex_state = 259}, + [359] = {.lex_state = 345}, + [360] = {.lex_state = 344}, + [361] = {.lex_state = 342}, + [362] = {.lex_state = 343}, [363] = {.lex_state = 259}, [364] = {.lex_state = 259}, [365] = {.lex_state = 259}, @@ -12842,190 +12914,190 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [368] = {.lex_state = 259}, [369] = {.lex_state = 259}, [370] = {.lex_state = 259}, - [371] = {.lex_state = 343}, - [372] = {.lex_state = 343}, - [373] = {.lex_state = 343}, - [374] = {.lex_state = 343}, - [375] = {.lex_state = 343}, - [376] = {.lex_state = 343}, - [377] = {.lex_state = 343}, - [378] = {.lex_state = 343}, - [379] = {.lex_state = 343}, - [380] = {.lex_state = 343}, - [381] = {.lex_state = 310}, - [382] = {.lex_state = 259}, - [383] = {.lex_state = 343}, + [371] = {.lex_state = 259}, + [372] = {.lex_state = 259}, + [373] = {.lex_state = 259}, + [374] = {.lex_state = 259}, + [375] = {.lex_state = 342}, + [376] = {.lex_state = 342}, + [377] = {.lex_state = 342}, + [378] = {.lex_state = 342}, + [379] = {.lex_state = 342}, + [380] = {.lex_state = 342}, + [381] = {.lex_state = 342}, + [382] = {.lex_state = 342}, + [383] = {.lex_state = 342}, [384] = {.lex_state = 342}, - [385] = {.lex_state = 297}, - [386] = {.lex_state = 297}, - [387] = {.lex_state = 345}, - [388] = {.lex_state = 346}, - [389] = {.lex_state = 343}, - [390] = {.lex_state = 344}, - [391] = {.lex_state = 345}, - [392] = {.lex_state = 250}, - [393] = {.lex_state = 343}, - [394] = {.lex_state = 316}, - [395] = {.lex_state = 347}, - [396] = {.lex_state = 297}, - [397] = {.lex_state = 259}, - [398] = {.lex_state = 312}, - [399] = {.lex_state = 348}, + [385] = {.lex_state = 310}, + [386] = {.lex_state = 259}, + [387] = {.lex_state = 342}, + [388] = {.lex_state = 341}, + [389] = {.lex_state = 297}, + [390] = {.lex_state = 297}, + [391] = {.lex_state = 344}, + [392] = {.lex_state = 345}, + [393] = {.lex_state = 342}, + [394] = {.lex_state = 343}, + [395] = {.lex_state = 344}, + [396] = {.lex_state = 250}, + [397] = {.lex_state = 342}, + [398] = {.lex_state = 316}, + [399] = {.lex_state = 346}, [400] = {.lex_state = 297}, - [401] = {.lex_state = 297}, - [402] = {.lex_state = 297}, - [403] = {.lex_state = 297}, - [404] = {.lex_state = 311}, - [405] = {.lex_state = 345}, - [406] = {.lex_state = 316}, - [407] = {.lex_state = 346}, - [408] = {.lex_state = 316}, - [409] = {.lex_state = 346}, - [410] = {.lex_state = 338}, - [411] = {.lex_state = 340}, - [412] = {.lex_state = 334}, - [413] = {.lex_state = 338}, - [414] = {.lex_state = 340}, - [415] = {.lex_state = 337}, - [416] = {.lex_state = 334}, - [417] = {.lex_state = 259}, - [418] = {.lex_state = 338}, - [419] = {.lex_state = 339}, - [420] = {.lex_state = 340}, - [421] = {.lex_state = 307}, - [422] = {.lex_state = 334}, - [423] = {.lex_state = 334}, - [424] = {.lex_state = 335}, - [425] = {.lex_state = 334}, - [426] = {.lex_state = 307}, - [427] = {.lex_state = 334}, - [428] = {.lex_state = 307}, - [429] = {.lex_state = 307}, - [430] = {.lex_state = 334}, - [431] = {.lex_state = 249}, - [432] = {.lex_state = 335}, - [433] = {.lex_state = 249}, - [434] = {.lex_state = 349}, - [435] = {.lex_state = 344}, - [436] = {.lex_state = 344}, - [437] = {.lex_state = 350}, - [438] = {.lex_state = 307}, - [439] = {.lex_state = 307}, - [440] = {.lex_state = 344}, - [441] = {.lex_state = 259}, - [442] = {.lex_state = 343}, - [443] = {.lex_state = 344}, - [444] = {.lex_state = 350}, - [445] = {.lex_state = 307}, - [446] = {.lex_state = 351}, - [447] = {.lex_state = 323}, - [448] = {.lex_state = 316}, - [449] = {.lex_state = 346}, - [450] = {.lex_state = 250}, - [451] = {.lex_state = 311}, + [401] = {.lex_state = 259}, + [402] = {.lex_state = 312}, + [403] = {.lex_state = 347}, + [404] = {.lex_state = 297}, + [405] = {.lex_state = 297}, + [406] = {.lex_state = 297}, + [407] = {.lex_state = 297}, + [408] = {.lex_state = 311}, + [409] = {.lex_state = 344}, + [410] = {.lex_state = 316}, + [411] = {.lex_state = 345}, + [412] = {.lex_state = 316}, + [413] = {.lex_state = 345}, + [414] = {.lex_state = 337}, + [415] = {.lex_state = 339}, + [416] = {.lex_state = 333}, + [417] = {.lex_state = 337}, + [418] = {.lex_state = 339}, + [419] = {.lex_state = 336}, + [420] = {.lex_state = 333}, + [421] = {.lex_state = 259}, + [422] = {.lex_state = 337}, + [423] = {.lex_state = 338}, + [424] = {.lex_state = 339}, + [425] = {.lex_state = 307}, + [426] = {.lex_state = 333}, + [427] = {.lex_state = 333}, + [428] = {.lex_state = 334}, + [429] = {.lex_state = 333}, + [430] = {.lex_state = 307}, + [431] = {.lex_state = 333}, + [432] = {.lex_state = 307}, + [433] = {.lex_state = 307}, + [434] = {.lex_state = 333}, + [435] = {.lex_state = 249}, + [436] = {.lex_state = 334}, + [437] = {.lex_state = 249}, + [438] = {.lex_state = 348}, + [439] = {.lex_state = 343}, + [440] = {.lex_state = 343}, + [441] = {.lex_state = 349}, + [442] = {.lex_state = 307}, + [443] = {.lex_state = 307}, + [444] = {.lex_state = 343}, + [445] = {.lex_state = 259}, + [446] = {.lex_state = 342}, + [447] = {.lex_state = 343}, + [448] = {.lex_state = 349}, + [449] = {.lex_state = 307}, + [450] = {.lex_state = 350}, + [451] = {.lex_state = 324}, [452] = {.lex_state = 316}, - [453] = {.lex_state = 352}, - [454] = {.lex_state = 316}, - [455] = {.lex_state = 346}, - [456] = {.lex_state = 250}, - [457] = {.lex_state = 310}, + [453] = {.lex_state = 345}, + [454] = {.lex_state = 250}, + [455] = {.lex_state = 311}, + [456] = {.lex_state = 316}, + [457] = {.lex_state = 351}, [458] = {.lex_state = 316}, - [459] = {.lex_state = 353}, - [460] = {.lex_state = 316}, - [461] = {.lex_state = 346}, - [462] = {.lex_state = 308}, - [463] = {.lex_state = 303}, - [464] = {.lex_state = 337}, - [465] = {.lex_state = 354}, - [466] = {.lex_state = 355}, - [467] = {.lex_state = 337}, - [468] = {.lex_state = 303}, - [469] = {.lex_state = 355}, - [470] = {.lex_state = 337}, - [471] = {.lex_state = 303}, - [472] = {.lex_state = 337}, - [473] = {.lex_state = 356}, - [474] = {.lex_state = 355}, - [475] = {.lex_state = 346}, - [476] = {.lex_state = 308}, + [459] = {.lex_state = 345}, + [460] = {.lex_state = 250}, + [461] = {.lex_state = 310}, + [462] = {.lex_state = 316}, + [463] = {.lex_state = 352}, + [464] = {.lex_state = 316}, + [465] = {.lex_state = 345}, + [466] = {.lex_state = 308}, + [467] = {.lex_state = 303}, + [468] = {.lex_state = 336}, + [469] = {.lex_state = 353}, + [470] = {.lex_state = 354}, + [471] = {.lex_state = 336}, + [472] = {.lex_state = 303}, + [473] = {.lex_state = 354}, + [474] = {.lex_state = 336}, + [475] = {.lex_state = 303}, + [476] = {.lex_state = 336}, [477] = {.lex_state = 355}, - [478] = {.lex_state = 356}, - [479] = {.lex_state = 355}, - [480] = {.lex_state = 303}, - [481] = {.lex_state = 306}, - [482] = {.lex_state = 303}, + [478] = {.lex_state = 354}, + [479] = {.lex_state = 345}, + [480] = {.lex_state = 308}, + [481] = {.lex_state = 354}, + [482] = {.lex_state = 355}, [483] = {.lex_state = 354}, - [484] = {.lex_state = 355}, - [485] = {.lex_state = 355}, + [484] = {.lex_state = 303}, + [485] = {.lex_state = 306}, [486] = {.lex_state = 303}, - [487] = {.lex_state = 303}, - [488] = {.lex_state = 287}, - [489] = {.lex_state = 357}, - [490] = {.lex_state = 270}, - [491] = {.lex_state = 250}, - [492] = {.lex_state = 308}, - [493] = {.lex_state = 316}, - [494] = {.lex_state = 358}, - [495] = {.lex_state = 296}, - [496] = {.lex_state = 270}, - [497] = {.lex_state = 270}, - [498] = {.lex_state = 270}, - [499] = {.lex_state = 270}, - [500] = {.lex_state = 340}, + [487] = {.lex_state = 353}, + [488] = {.lex_state = 354}, + [489] = {.lex_state = 354}, + [490] = {.lex_state = 303}, + [491] = {.lex_state = 303}, + [492] = {.lex_state = 287}, + [493] = {.lex_state = 356}, + [494] = {.lex_state = 270}, + [495] = {.lex_state = 250}, + [496] = {.lex_state = 308}, + [497] = {.lex_state = 316}, + [498] = {.lex_state = 357}, + [499] = {.lex_state = 296}, + [500] = {.lex_state = 270}, [501] = {.lex_state = 270}, - [502] = {.lex_state = 359}, - [503] = {.lex_state = 295}, - [504] = {.lex_state = 360}, - [505] = {.lex_state = 304}, - [506] = {.lex_state = 337}, - [507] = {.lex_state = 340}, - [508] = {.lex_state = 295}, - [509] = {.lex_state = 309}, - [510] = {.lex_state = 340}, - [511] = {.lex_state = 309}, - [512] = {.lex_state = 287}, - [513] = {.lex_state = 312}, - [514] = {.lex_state = 287}, - [515] = {.lex_state = 313}, + [502] = {.lex_state = 270}, + [503] = {.lex_state = 270}, + [504] = {.lex_state = 339}, + [505] = {.lex_state = 270}, + [506] = {.lex_state = 358}, + [507] = {.lex_state = 295}, + [508] = {.lex_state = 359}, + [509] = {.lex_state = 304}, + [510] = {.lex_state = 336}, + [511] = {.lex_state = 339}, + [512] = {.lex_state = 295}, + [513] = {.lex_state = 309}, + [514] = {.lex_state = 339}, + [515] = {.lex_state = 309}, [516] = {.lex_state = 287}, - [517] = {.lex_state = 270}, - [518] = {.lex_state = 270}, - [519] = {.lex_state = 270}, + [517] = {.lex_state = 312}, + [518] = {.lex_state = 287}, + [519] = {.lex_state = 313}, [520] = {.lex_state = 287}, - [521] = {.lex_state = 312}, - [522] = {.lex_state = 313}, + [521] = {.lex_state = 270}, + [522] = {.lex_state = 270}, [523] = {.lex_state = 270}, - [524] = {.lex_state = 356}, - [525] = {.lex_state = 337}, - [526] = {.lex_state = 356}, - [527] = {.lex_state = 309}, - [528] = {.lex_state = 340}, - [529] = {.lex_state = 287}, - [530] = {.lex_state = 312}, - [531] = {.lex_state = 313}, - [532] = {.lex_state = 270}, - [533] = {.lex_state = 285}, - [534] = {.lex_state = 285}, - [535] = {.lex_state = 259}, - [536] = {.lex_state = 286}, + [524] = {.lex_state = 287}, + [525] = {.lex_state = 312}, + [526] = {.lex_state = 313}, + [527] = {.lex_state = 270}, + [528] = {.lex_state = 355}, + [529] = {.lex_state = 336}, + [530] = {.lex_state = 355}, + [531] = {.lex_state = 309}, + [532] = {.lex_state = 339}, + [533] = {.lex_state = 287}, + [534] = {.lex_state = 312}, + [535] = {.lex_state = 313}, + [536] = {.lex_state = 270}, [537] = {.lex_state = 285}, [538] = {.lex_state = 285}, - [539] = {.lex_state = 357}, - [540] = {.lex_state = 361}, + [539] = {.lex_state = 259}, + [540] = {.lex_state = 286}, [541] = {.lex_state = 285}, - [542] = {.lex_state = 259}, - [543] = {.lex_state = 250}, - [544] = {.lex_state = 259}, - [545] = {.lex_state = 259}, + [542] = {.lex_state = 285}, + [543] = {.lex_state = 356}, + [544] = {.lex_state = 360}, + [545] = {.lex_state = 285}, [546] = {.lex_state = 259}, - [547] = {.lex_state = 259}, + [547] = {.lex_state = 250}, [548] = {.lex_state = 259}, - [549] = {.lex_state = 367}, - [550] = {.lex_state = 270}, + [549] = {.lex_state = 259}, + [550] = {.lex_state = 259}, [551] = {.lex_state = 259}, [552] = {.lex_state = 259}, - [553] = {.lex_state = 259}, - [554] = {.lex_state = 259}, + [553] = {.lex_state = 366}, + [554] = {.lex_state = 270}, [555] = {.lex_state = 259}, [556] = {.lex_state = 259}, [557] = {.lex_state = 259}, @@ -13034,400 +13106,400 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [560] = {.lex_state = 259}, [561] = {.lex_state = 259}, [562] = {.lex_state = 259}, - [563] = {.lex_state = 367}, - [564] = {.lex_state = 367}, - [565] = {.lex_state = 367}, - [566] = {.lex_state = 367}, - [567] = {.lex_state = 367}, - [568] = {.lex_state = 367}, - [569] = {.lex_state = 367}, - [570] = {.lex_state = 367}, - [571] = {.lex_state = 367}, - [572] = {.lex_state = 367}, - [573] = {.lex_state = 310}, - [574] = {.lex_state = 259}, - [575] = {.lex_state = 367}, - [576] = {.lex_state = 250}, - [577] = {.lex_state = 367}, - [578] = {.lex_state = 316}, - [579] = {.lex_state = 368}, - [580] = {.lex_state = 316}, - [581] = {.lex_state = 346}, - [582] = {.lex_state = 287}, - [583] = {.lex_state = 359}, - [584] = {.lex_state = 295}, - [585] = {.lex_state = 340}, - [586] = {.lex_state = 295}, - [587] = {.lex_state = 309}, - [588] = {.lex_state = 340}, - [589] = {.lex_state = 309}, - [590] = {.lex_state = 287}, - [591] = {.lex_state = 312}, - [592] = {.lex_state = 287}, - [593] = {.lex_state = 313}, + [563] = {.lex_state = 259}, + [564] = {.lex_state = 259}, + [565] = {.lex_state = 259}, + [566] = {.lex_state = 259}, + [567] = {.lex_state = 366}, + [568] = {.lex_state = 366}, + [569] = {.lex_state = 366}, + [570] = {.lex_state = 366}, + [571] = {.lex_state = 366}, + [572] = {.lex_state = 366}, + [573] = {.lex_state = 366}, + [574] = {.lex_state = 366}, + [575] = {.lex_state = 366}, + [576] = {.lex_state = 366}, + [577] = {.lex_state = 310}, + [578] = {.lex_state = 259}, + [579] = {.lex_state = 366}, + [580] = {.lex_state = 250}, + [581] = {.lex_state = 366}, + [582] = {.lex_state = 316}, + [583] = {.lex_state = 367}, + [584] = {.lex_state = 316}, + [585] = {.lex_state = 345}, + [586] = {.lex_state = 287}, + [587] = {.lex_state = 358}, + [588] = {.lex_state = 295}, + [589] = {.lex_state = 339}, + [590] = {.lex_state = 295}, + [591] = {.lex_state = 309}, + [592] = {.lex_state = 339}, + [593] = {.lex_state = 309}, [594] = {.lex_state = 287}, - [595] = {.lex_state = 287}, - [596] = {.lex_state = 312}, + [595] = {.lex_state = 312}, + [596] = {.lex_state = 287}, [597] = {.lex_state = 313}, - [598] = {.lex_state = 309}, - [599] = {.lex_state = 340}, - [600] = {.lex_state = 287}, - [601] = {.lex_state = 312}, - [602] = {.lex_state = 313}, - [603] = {.lex_state = 259}, - [604] = {.lex_state = 367}, - [605] = {.lex_state = 287}, - [606] = {.lex_state = 270}, - [607] = {.lex_state = 287}, - [608] = {.lex_state = 270}, - [609] = {.lex_state = 310}, - [610] = {.lex_state = 287}, - [611] = {.lex_state = 270}, - [612] = {.lex_state = 259}, - [613] = {.lex_state = 367}, + [598] = {.lex_state = 287}, + [599] = {.lex_state = 287}, + [600] = {.lex_state = 312}, + [601] = {.lex_state = 313}, + [602] = {.lex_state = 309}, + [603] = {.lex_state = 339}, + [604] = {.lex_state = 287}, + [605] = {.lex_state = 312}, + [606] = {.lex_state = 313}, + [607] = {.lex_state = 259}, + [608] = {.lex_state = 366}, + [609] = {.lex_state = 287}, + [610] = {.lex_state = 270}, + [611] = {.lex_state = 287}, + [612] = {.lex_state = 270}, + [613] = {.lex_state = 310}, [614] = {.lex_state = 287}, [615] = {.lex_state = 270}, [616] = {.lex_state = 259}, - [617] = {.lex_state = 367}, + [617] = {.lex_state = 366}, [618] = {.lex_state = 287}, - [619] = {.lex_state = 285}, - [620] = {.lex_state = 285}, - [621] = {.lex_state = 259}, - [622] = {.lex_state = 286}, + [619] = {.lex_state = 270}, + [620] = {.lex_state = 259}, + [621] = {.lex_state = 366}, + [622] = {.lex_state = 287}, [623] = {.lex_state = 285}, [624] = {.lex_state = 285}, - [625] = {.lex_state = 357}, - [626] = {.lex_state = 369}, - [627] = {.lex_state = 287}, - [628] = {.lex_state = 270}, - [629] = {.lex_state = 287}, - [630] = {.lex_state = 359}, - [631] = {.lex_state = 295}, - [632] = {.lex_state = 340}, - [633] = {.lex_state = 295}, - [634] = {.lex_state = 309}, - [635] = {.lex_state = 340}, - [636] = {.lex_state = 309}, - [637] = {.lex_state = 287}, - [638] = {.lex_state = 312}, - [639] = {.lex_state = 287}, - [640] = {.lex_state = 313}, + [625] = {.lex_state = 259}, + [626] = {.lex_state = 286}, + [627] = {.lex_state = 285}, + [628] = {.lex_state = 285}, + [629] = {.lex_state = 356}, + [630] = {.lex_state = 368}, + [631] = {.lex_state = 287}, + [632] = {.lex_state = 270}, + [633] = {.lex_state = 287}, + [634] = {.lex_state = 358}, + [635] = {.lex_state = 295}, + [636] = {.lex_state = 339}, + [637] = {.lex_state = 295}, + [638] = {.lex_state = 309}, + [639] = {.lex_state = 339}, + [640] = {.lex_state = 309}, [641] = {.lex_state = 287}, - [642] = {.lex_state = 287}, - [643] = {.lex_state = 312}, + [642] = {.lex_state = 312}, + [643] = {.lex_state = 287}, [644] = {.lex_state = 313}, - [645] = {.lex_state = 309}, - [646] = {.lex_state = 340}, - [647] = {.lex_state = 287}, - [648] = {.lex_state = 312}, - [649] = {.lex_state = 313}, - [650] = {.lex_state = 259}, - [651] = {.lex_state = 367}, - [652] = {.lex_state = 287}, - [653] = {.lex_state = 287}, - [654] = {.lex_state = 310}, - [655] = {.lex_state = 287}, - [656] = {.lex_state = 259}, - [657] = {.lex_state = 367}, - [658] = {.lex_state = 287}, - [659] = {.lex_state = 259}, - [660] = {.lex_state = 367}, - [661] = {.lex_state = 287}, - [662] = {.lex_state = 369}, - [663] = {.lex_state = 287}, - [664] = {.lex_state = 270}, - [665] = {.lex_state = 285}, - [666] = {.lex_state = 285}, - [667] = {.lex_state = 259}, - [668] = {.lex_state = 286}, + [645] = {.lex_state = 287}, + [646] = {.lex_state = 287}, + [647] = {.lex_state = 312}, + [648] = {.lex_state = 313}, + [649] = {.lex_state = 309}, + [650] = {.lex_state = 339}, + [651] = {.lex_state = 287}, + [652] = {.lex_state = 312}, + [653] = {.lex_state = 313}, + [654] = {.lex_state = 259}, + [655] = {.lex_state = 366}, + [656] = {.lex_state = 287}, + [657] = {.lex_state = 287}, + [658] = {.lex_state = 310}, + [659] = {.lex_state = 287}, + [660] = {.lex_state = 259}, + [661] = {.lex_state = 366}, + [662] = {.lex_state = 287}, + [663] = {.lex_state = 259}, + [664] = {.lex_state = 366}, + [665] = {.lex_state = 287}, + [666] = {.lex_state = 368}, + [667] = {.lex_state = 287}, + [668] = {.lex_state = 270}, [669] = {.lex_state = 285}, [670] = {.lex_state = 285}, - [671] = {.lex_state = 374}, - [672] = {.lex_state = 276}, - [673] = {.lex_state = 270}, - [674] = {.lex_state = 287}, - [675] = {.lex_state = 357}, - [676] = {.lex_state = 359}, - [677] = {.lex_state = 295}, - [678] = {.lex_state = 340}, - [679] = {.lex_state = 295}, - [680] = {.lex_state = 309}, - [681] = {.lex_state = 340}, - [682] = {.lex_state = 309}, - [683] = {.lex_state = 287}, - [684] = {.lex_state = 312}, - [685] = {.lex_state = 287}, - [686] = {.lex_state = 313}, + [671] = {.lex_state = 259}, + [672] = {.lex_state = 286}, + [673] = {.lex_state = 285}, + [674] = {.lex_state = 285}, + [675] = {.lex_state = 373}, + [676] = {.lex_state = 276}, + [677] = {.lex_state = 270}, + [678] = {.lex_state = 287}, + [679] = {.lex_state = 356}, + [680] = {.lex_state = 358}, + [681] = {.lex_state = 295}, + [682] = {.lex_state = 339}, + [683] = {.lex_state = 295}, + [684] = {.lex_state = 309}, + [685] = {.lex_state = 339}, + [686] = {.lex_state = 309}, [687] = {.lex_state = 287}, - [688] = {.lex_state = 287}, - [689] = {.lex_state = 312}, + [688] = {.lex_state = 312}, + [689] = {.lex_state = 287}, [690] = {.lex_state = 313}, - [691] = {.lex_state = 309}, - [692] = {.lex_state = 340}, - [693] = {.lex_state = 287}, - [694] = {.lex_state = 312}, - [695] = {.lex_state = 313}, - [696] = {.lex_state = 259}, - [697] = {.lex_state = 367}, - [698] = {.lex_state = 287}, - [699] = {.lex_state = 287}, - [700] = {.lex_state = 310}, - [701] = {.lex_state = 287}, - [702] = {.lex_state = 259}, - [703] = {.lex_state = 367}, - [704] = {.lex_state = 287}, - [705] = {.lex_state = 259}, - [706] = {.lex_state = 367}, - [707] = {.lex_state = 287}, - [708] = {.lex_state = 285}, - [709] = {.lex_state = 285}, - [710] = {.lex_state = 259}, - [711] = {.lex_state = 286}, + [691] = {.lex_state = 287}, + [692] = {.lex_state = 287}, + [693] = {.lex_state = 312}, + [694] = {.lex_state = 313}, + [695] = {.lex_state = 309}, + [696] = {.lex_state = 339}, + [697] = {.lex_state = 287}, + [698] = {.lex_state = 312}, + [699] = {.lex_state = 313}, + [700] = {.lex_state = 259}, + [701] = {.lex_state = 366}, + [702] = {.lex_state = 287}, + [703] = {.lex_state = 287}, + [704] = {.lex_state = 310}, + [705] = {.lex_state = 287}, + [706] = {.lex_state = 259}, + [707] = {.lex_state = 366}, + [708] = {.lex_state = 287}, + [709] = {.lex_state = 259}, + [710] = {.lex_state = 366}, + [711] = {.lex_state = 287}, [712] = {.lex_state = 285}, [713] = {.lex_state = 285}, - [714] = {.lex_state = 357}, - [715] = {.lex_state = 375}, - [716] = {.lex_state = 287}, - [717] = {.lex_state = 287}, - [718] = {.lex_state = 359}, - [719] = {.lex_state = 295}, - [720] = {.lex_state = 340}, - [721] = {.lex_state = 295}, - [722] = {.lex_state = 309}, - [723] = {.lex_state = 340}, - [724] = {.lex_state = 309}, - [725] = {.lex_state = 287}, - [726] = {.lex_state = 312}, - [727] = {.lex_state = 287}, - [728] = {.lex_state = 313}, + [714] = {.lex_state = 259}, + [715] = {.lex_state = 286}, + [716] = {.lex_state = 285}, + [717] = {.lex_state = 285}, + [718] = {.lex_state = 356}, + [719] = {.lex_state = 374}, + [720] = {.lex_state = 287}, + [721] = {.lex_state = 287}, + [722] = {.lex_state = 358}, + [723] = {.lex_state = 295}, + [724] = {.lex_state = 339}, + [725] = {.lex_state = 295}, + [726] = {.lex_state = 309}, + [727] = {.lex_state = 339}, + [728] = {.lex_state = 309}, [729] = {.lex_state = 287}, - [730] = {.lex_state = 287}, - [731] = {.lex_state = 312}, + [730] = {.lex_state = 312}, + [731] = {.lex_state = 287}, [732] = {.lex_state = 313}, - [733] = {.lex_state = 309}, - [734] = {.lex_state = 340}, - [735] = {.lex_state = 287}, - [736] = {.lex_state = 312}, - [737] = {.lex_state = 313}, - [738] = {.lex_state = 259}, - [739] = {.lex_state = 367}, - [740] = {.lex_state = 287}, - [741] = {.lex_state = 287}, - [742] = {.lex_state = 310}, - [743] = {.lex_state = 287}, - [744] = {.lex_state = 259}, - [745] = {.lex_state = 367}, - [746] = {.lex_state = 287}, - [747] = {.lex_state = 259}, - [748] = {.lex_state = 367}, - [749] = {.lex_state = 287}, - [750] = {.lex_state = 375}, - [751] = {.lex_state = 287}, - [752] = {.lex_state = 376}, - [753] = {.lex_state = 276}, - [754] = {.lex_state = 303}, - [755] = {.lex_state = 304}, - [756] = {.lex_state = 337}, - [757] = {.lex_state = 337}, + [733] = {.lex_state = 287}, + [734] = {.lex_state = 287}, + [735] = {.lex_state = 312}, + [736] = {.lex_state = 313}, + [737] = {.lex_state = 309}, + [738] = {.lex_state = 339}, + [739] = {.lex_state = 287}, + [740] = {.lex_state = 312}, + [741] = {.lex_state = 313}, + [742] = {.lex_state = 259}, + [743] = {.lex_state = 366}, + [744] = {.lex_state = 287}, + [745] = {.lex_state = 287}, + [746] = {.lex_state = 310}, + [747] = {.lex_state = 287}, + [748] = {.lex_state = 259}, + [749] = {.lex_state = 366}, + [750] = {.lex_state = 287}, + [751] = {.lex_state = 259}, + [752] = {.lex_state = 366}, + [753] = {.lex_state = 287}, + [754] = {.lex_state = 374}, + [755] = {.lex_state = 287}, + [756] = {.lex_state = 375}, + [757] = {.lex_state = 276}, [758] = {.lex_state = 303}, - [759] = {.lex_state = 276}, - [760] = {.lex_state = 303}, - [761] = {.lex_state = 303}, - [762] = {.lex_state = 377}, - [763] = {.lex_state = 303}, - [764] = {.lex_state = 378}, - [765] = {.lex_state = 285}, - [766] = {.lex_state = 285}, - [767] = {.lex_state = 259}, - [768] = {.lex_state = 286}, + [759] = {.lex_state = 304}, + [760] = {.lex_state = 336}, + [761] = {.lex_state = 336}, + [762] = {.lex_state = 303}, + [763] = {.lex_state = 276}, + [764] = {.lex_state = 303}, + [765] = {.lex_state = 303}, + [766] = {.lex_state = 376}, + [767] = {.lex_state = 303}, + [768] = {.lex_state = 377}, [769] = {.lex_state = 285}, [770] = {.lex_state = 285}, - [771] = {.lex_state = 301}, - [772] = {.lex_state = 381}, - [773] = {.lex_state = 377}, - [774] = {.lex_state = 303}, - [775] = {.lex_state = 381}, - [776] = {.lex_state = 303}, - [777] = {.lex_state = 287}, - [778] = {.lex_state = 357}, - [779] = {.lex_state = 359}, - [780] = {.lex_state = 295}, - [781] = {.lex_state = 340}, - [782] = {.lex_state = 295}, - [783] = {.lex_state = 309}, - [784] = {.lex_state = 340}, - [785] = {.lex_state = 309}, - [786] = {.lex_state = 287}, - [787] = {.lex_state = 312}, - [788] = {.lex_state = 287}, - [789] = {.lex_state = 313}, + [771] = {.lex_state = 259}, + [772] = {.lex_state = 286}, + [773] = {.lex_state = 285}, + [774] = {.lex_state = 285}, + [775] = {.lex_state = 301}, + [776] = {.lex_state = 380}, + [777] = {.lex_state = 376}, + [778] = {.lex_state = 303}, + [779] = {.lex_state = 380}, + [780] = {.lex_state = 303}, + [781] = {.lex_state = 287}, + [782] = {.lex_state = 356}, + [783] = {.lex_state = 358}, + [784] = {.lex_state = 295}, + [785] = {.lex_state = 339}, + [786] = {.lex_state = 295}, + [787] = {.lex_state = 309}, + [788] = {.lex_state = 339}, + [789] = {.lex_state = 309}, [790] = {.lex_state = 287}, - [791] = {.lex_state = 287}, - [792] = {.lex_state = 312}, + [791] = {.lex_state = 312}, + [792] = {.lex_state = 287}, [793] = {.lex_state = 313}, - [794] = {.lex_state = 309}, - [795] = {.lex_state = 340}, - [796] = {.lex_state = 287}, - [797] = {.lex_state = 312}, - [798] = {.lex_state = 313}, - [799] = {.lex_state = 259}, - [800] = {.lex_state = 367}, - [801] = {.lex_state = 287}, - [802] = {.lex_state = 287}, - [803] = {.lex_state = 310}, - [804] = {.lex_state = 287}, - [805] = {.lex_state = 259}, - [806] = {.lex_state = 367}, - [807] = {.lex_state = 287}, - [808] = {.lex_state = 259}, - [809] = {.lex_state = 367}, - [810] = {.lex_state = 287}, - [811] = {.lex_state = 285}, - [812] = {.lex_state = 285}, - [813] = {.lex_state = 259}, - [814] = {.lex_state = 286}, + [794] = {.lex_state = 287}, + [795] = {.lex_state = 287}, + [796] = {.lex_state = 312}, + [797] = {.lex_state = 313}, + [798] = {.lex_state = 309}, + [799] = {.lex_state = 339}, + [800] = {.lex_state = 287}, + [801] = {.lex_state = 312}, + [802] = {.lex_state = 313}, + [803] = {.lex_state = 259}, + [804] = {.lex_state = 366}, + [805] = {.lex_state = 287}, + [806] = {.lex_state = 287}, + [807] = {.lex_state = 310}, + [808] = {.lex_state = 287}, + [809] = {.lex_state = 259}, + [810] = {.lex_state = 366}, + [811] = {.lex_state = 287}, + [812] = {.lex_state = 259}, + [813] = {.lex_state = 366}, + [814] = {.lex_state = 287}, [815] = {.lex_state = 285}, [816] = {.lex_state = 285}, - [817] = {.lex_state = 357}, - [818] = {.lex_state = 388}, - [819] = {.lex_state = 287}, - [820] = {.lex_state = 287}, - [821] = {.lex_state = 359}, - [822] = {.lex_state = 295}, - [823] = {.lex_state = 340}, - [824] = {.lex_state = 295}, - [825] = {.lex_state = 309}, - [826] = {.lex_state = 340}, - [827] = {.lex_state = 309}, - [828] = {.lex_state = 287}, - [829] = {.lex_state = 312}, - [830] = {.lex_state = 287}, - [831] = {.lex_state = 313}, + [817] = {.lex_state = 259}, + [818] = {.lex_state = 286}, + [819] = {.lex_state = 285}, + [820] = {.lex_state = 285}, + [821] = {.lex_state = 356}, + [822] = {.lex_state = 387}, + [823] = {.lex_state = 287}, + [824] = {.lex_state = 287}, + [825] = {.lex_state = 358}, + [826] = {.lex_state = 295}, + [827] = {.lex_state = 339}, + [828] = {.lex_state = 295}, + [829] = {.lex_state = 309}, + [830] = {.lex_state = 339}, + [831] = {.lex_state = 309}, [832] = {.lex_state = 287}, - [833] = {.lex_state = 287}, - [834] = {.lex_state = 312}, + [833] = {.lex_state = 312}, + [834] = {.lex_state = 287}, [835] = {.lex_state = 313}, - [836] = {.lex_state = 309}, - [837] = {.lex_state = 340}, - [838] = {.lex_state = 287}, - [839] = {.lex_state = 312}, - [840] = {.lex_state = 313}, - [841] = {.lex_state = 259}, - [842] = {.lex_state = 367}, - [843] = {.lex_state = 287}, - [844] = {.lex_state = 287}, - [845] = {.lex_state = 310}, - [846] = {.lex_state = 287}, - [847] = {.lex_state = 259}, - [848] = {.lex_state = 367}, - [849] = {.lex_state = 287}, - [850] = {.lex_state = 259}, - [851] = {.lex_state = 367}, - [852] = {.lex_state = 287}, - [853] = {.lex_state = 388}, - [854] = {.lex_state = 287}, - [855] = {.lex_state = 285}, - [856] = {.lex_state = 285}, - [857] = {.lex_state = 259}, - [858] = {.lex_state = 286}, + [836] = {.lex_state = 287}, + [837] = {.lex_state = 287}, + [838] = {.lex_state = 312}, + [839] = {.lex_state = 313}, + [840] = {.lex_state = 309}, + [841] = {.lex_state = 339}, + [842] = {.lex_state = 287}, + [843] = {.lex_state = 312}, + [844] = {.lex_state = 313}, + [845] = {.lex_state = 259}, + [846] = {.lex_state = 366}, + [847] = {.lex_state = 287}, + [848] = {.lex_state = 287}, + [849] = {.lex_state = 310}, + [850] = {.lex_state = 287}, + [851] = {.lex_state = 259}, + [852] = {.lex_state = 366}, + [853] = {.lex_state = 287}, + [854] = {.lex_state = 259}, + [855] = {.lex_state = 366}, + [856] = {.lex_state = 287}, + [857] = {.lex_state = 387}, + [858] = {.lex_state = 287}, [859] = {.lex_state = 285}, [860] = {.lex_state = 285}, - [861] = {.lex_state = 301}, - [862] = {.lex_state = 378}, - [863] = {.lex_state = 287}, - [864] = {.lex_state = 357}, - [865] = {.lex_state = 359}, - [866] = {.lex_state = 295}, - [867] = {.lex_state = 340}, - [868] = {.lex_state = 295}, - [869] = {.lex_state = 309}, - [870] = {.lex_state = 340}, - [871] = {.lex_state = 309}, - [872] = {.lex_state = 287}, - [873] = {.lex_state = 312}, - [874] = {.lex_state = 287}, - [875] = {.lex_state = 313}, + [861] = {.lex_state = 259}, + [862] = {.lex_state = 286}, + [863] = {.lex_state = 285}, + [864] = {.lex_state = 285}, + [865] = {.lex_state = 301}, + [866] = {.lex_state = 377}, + [867] = {.lex_state = 287}, + [868] = {.lex_state = 356}, + [869] = {.lex_state = 358}, + [870] = {.lex_state = 295}, + [871] = {.lex_state = 339}, + [872] = {.lex_state = 295}, + [873] = {.lex_state = 309}, + [874] = {.lex_state = 339}, + [875] = {.lex_state = 309}, [876] = {.lex_state = 287}, - [877] = {.lex_state = 287}, - [878] = {.lex_state = 312}, + [877] = {.lex_state = 312}, + [878] = {.lex_state = 287}, [879] = {.lex_state = 313}, - [880] = {.lex_state = 309}, - [881] = {.lex_state = 340}, - [882] = {.lex_state = 287}, - [883] = {.lex_state = 312}, - [884] = {.lex_state = 313}, - [885] = {.lex_state = 259}, - [886] = {.lex_state = 367}, - [887] = {.lex_state = 287}, - [888] = {.lex_state = 287}, - [889] = {.lex_state = 310}, - [890] = {.lex_state = 287}, - [891] = {.lex_state = 259}, - [892] = {.lex_state = 367}, - [893] = {.lex_state = 287}, - [894] = {.lex_state = 259}, - [895] = {.lex_state = 367}, - [896] = {.lex_state = 287}, - [897] = {.lex_state = 285}, - [898] = {.lex_state = 285}, - [899] = {.lex_state = 259}, - [900] = {.lex_state = 286}, + [880] = {.lex_state = 287}, + [881] = {.lex_state = 287}, + [882] = {.lex_state = 312}, + [883] = {.lex_state = 313}, + [884] = {.lex_state = 309}, + [885] = {.lex_state = 339}, + [886] = {.lex_state = 287}, + [887] = {.lex_state = 312}, + [888] = {.lex_state = 313}, + [889] = {.lex_state = 259}, + [890] = {.lex_state = 366}, + [891] = {.lex_state = 287}, + [892] = {.lex_state = 287}, + [893] = {.lex_state = 310}, + [894] = {.lex_state = 287}, + [895] = {.lex_state = 259}, + [896] = {.lex_state = 366}, + [897] = {.lex_state = 287}, + [898] = {.lex_state = 259}, + [899] = {.lex_state = 366}, + [900] = {.lex_state = 287}, [901] = {.lex_state = 285}, [902] = {.lex_state = 285}, - [903] = {.lex_state = 357}, - [904] = {.lex_state = 389}, - [905] = {.lex_state = 287}, - [906] = {.lex_state = 287}, - [907] = {.lex_state = 359}, - [908] = {.lex_state = 295}, - [909] = {.lex_state = 340}, - [910] = {.lex_state = 295}, - [911] = {.lex_state = 309}, - [912] = {.lex_state = 340}, - [913] = {.lex_state = 309}, - [914] = {.lex_state = 287}, - [915] = {.lex_state = 312}, - [916] = {.lex_state = 287}, - [917] = {.lex_state = 313}, + [903] = {.lex_state = 259}, + [904] = {.lex_state = 286}, + [905] = {.lex_state = 285}, + [906] = {.lex_state = 285}, + [907] = {.lex_state = 356}, + [908] = {.lex_state = 388}, + [909] = {.lex_state = 287}, + [910] = {.lex_state = 287}, + [911] = {.lex_state = 358}, + [912] = {.lex_state = 295}, + [913] = {.lex_state = 339}, + [914] = {.lex_state = 295}, + [915] = {.lex_state = 309}, + [916] = {.lex_state = 339}, + [917] = {.lex_state = 309}, [918] = {.lex_state = 287}, - [919] = {.lex_state = 287}, - [920] = {.lex_state = 312}, + [919] = {.lex_state = 312}, + [920] = {.lex_state = 287}, [921] = {.lex_state = 313}, - [922] = {.lex_state = 309}, - [923] = {.lex_state = 340}, - [924] = {.lex_state = 287}, - [925] = {.lex_state = 312}, - [926] = {.lex_state = 313}, - [927] = {.lex_state = 259}, - [928] = {.lex_state = 367}, - [929] = {.lex_state = 287}, - [930] = {.lex_state = 287}, - [931] = {.lex_state = 310}, - [932] = {.lex_state = 287}, - [933] = {.lex_state = 259}, - [934] = {.lex_state = 367}, - [935] = {.lex_state = 287}, - [936] = {.lex_state = 259}, - [937] = {.lex_state = 367}, - [938] = {.lex_state = 287}, - [939] = {.lex_state = 389}, - [940] = {.lex_state = 287}, - [941] = {.lex_state = 250}, - [942] = {.lex_state = 259}, - [943] = {.lex_state = 259}, - [944] = {.lex_state = 259}, - [945] = {.lex_state = 259}, + [922] = {.lex_state = 287}, + [923] = {.lex_state = 287}, + [924] = {.lex_state = 312}, + [925] = {.lex_state = 313}, + [926] = {.lex_state = 309}, + [927] = {.lex_state = 339}, + [928] = {.lex_state = 287}, + [929] = {.lex_state = 312}, + [930] = {.lex_state = 313}, + [931] = {.lex_state = 259}, + [932] = {.lex_state = 366}, + [933] = {.lex_state = 287}, + [934] = {.lex_state = 287}, + [935] = {.lex_state = 310}, + [936] = {.lex_state = 287}, + [937] = {.lex_state = 259}, + [938] = {.lex_state = 366}, + [939] = {.lex_state = 287}, + [940] = {.lex_state = 259}, + [941] = {.lex_state = 366}, + [942] = {.lex_state = 287}, + [943] = {.lex_state = 388}, + [944] = {.lex_state = 287}, + [945] = {.lex_state = 250}, [946] = {.lex_state = 259}, - [947] = {.lex_state = 390}, - [948] = {.lex_state = 392}, - [949] = {.lex_state = 390}, - [950] = {.lex_state = 393}, - [951] = {.lex_state = 377}, - [952] = {.lex_state = 309}, - [953] = {.lex_state = 259}, - [954] = {.lex_state = 259}, - [955] = {.lex_state = 259}, - [956] = {.lex_state = 259}, + [947] = {.lex_state = 259}, + [948] = {.lex_state = 259}, + [949] = {.lex_state = 259}, + [950] = {.lex_state = 259}, + [951] = {.lex_state = 389}, + [952] = {.lex_state = 391}, + [953] = {.lex_state = 389}, + [954] = {.lex_state = 392}, + [955] = {.lex_state = 376}, + [956] = {.lex_state = 309}, [957] = {.lex_state = 259}, [958] = {.lex_state = 259}, [959] = {.lex_state = 259}, @@ -13437,166 +13509,166 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [963] = {.lex_state = 259}, [964] = {.lex_state = 259}, [965] = {.lex_state = 259}, - [966] = {.lex_state = 390}, - [967] = {.lex_state = 249}, - [968] = {.lex_state = 390}, - [969] = {.lex_state = 390}, - [970] = {.lex_state = 393}, - [971] = {.lex_state = 393}, - [972] = {.lex_state = 393}, - [973] = {.lex_state = 393}, - [974] = {.lex_state = 393}, - [975] = {.lex_state = 393}, - [976] = {.lex_state = 393}, - [977] = {.lex_state = 393}, - [978] = {.lex_state = 393}, - [979] = {.lex_state = 393}, - [980] = {.lex_state = 393}, - [981] = {.lex_state = 310}, - [982] = {.lex_state = 259}, - [983] = {.lex_state = 393}, - [984] = {.lex_state = 311}, - [985] = {.lex_state = 390}, - [986] = {.lex_state = 390}, - [987] = {.lex_state = 312}, - [988] = {.lex_state = 390}, - [989] = {.lex_state = 313}, - [990] = {.lex_state = 390}, - [991] = {.lex_state = 303}, - [992] = {.lex_state = 381}, - [993] = {.lex_state = 377}, - [994] = {.lex_state = 303}, - [995] = {.lex_state = 381}, - [996] = {.lex_state = 303}, - [997] = {.lex_state = 392}, - [998] = {.lex_state = 392}, - [999] = {.lex_state = 392}, - [1000] = {.lex_state = 250}, - [1001] = {.lex_state = 393}, - [1002] = {.lex_state = 312}, - [1003] = {.lex_state = 316}, - [1004] = {.lex_state = 316}, - [1005] = {.lex_state = 394}, - [1006] = {.lex_state = 342}, - [1007] = {.lex_state = 393}, - [1008] = {.lex_state = 390}, - [1009] = {.lex_state = 390}, - [1010] = {.lex_state = 344}, - [1011] = {.lex_state = 342}, - [1012] = {.lex_state = 390}, - [1013] = {.lex_state = 390}, - [1014] = {.lex_state = 390}, - [1015] = {.lex_state = 393}, - [1016] = {.lex_state = 393}, - [1017] = {.lex_state = 393}, - [1018] = {.lex_state = 393}, - [1019] = {.lex_state = 316}, - [1020] = {.lex_state = 346}, - [1021] = {.lex_state = 395}, - [1022] = {.lex_state = 261}, - [1023] = {.lex_state = 303}, - [1024] = {.lex_state = 397}, - [1025] = {.lex_state = 398}, - [1026] = {.lex_state = 303}, - [1027] = {.lex_state = 400}, - [1028] = {.lex_state = 303}, - [1029] = {.lex_state = 313}, - [1030] = {.lex_state = 398}, - [1031] = {.lex_state = 401}, - [1032] = {.lex_state = 398}, + [966] = {.lex_state = 259}, + [967] = {.lex_state = 259}, + [968] = {.lex_state = 259}, + [969] = {.lex_state = 259}, + [970] = {.lex_state = 389}, + [971] = {.lex_state = 249}, + [972] = {.lex_state = 389}, + [973] = {.lex_state = 389}, + [974] = {.lex_state = 392}, + [975] = {.lex_state = 392}, + [976] = {.lex_state = 392}, + [977] = {.lex_state = 392}, + [978] = {.lex_state = 392}, + [979] = {.lex_state = 392}, + [980] = {.lex_state = 392}, + [981] = {.lex_state = 392}, + [982] = {.lex_state = 392}, + [983] = {.lex_state = 392}, + [984] = {.lex_state = 392}, + [985] = {.lex_state = 310}, + [986] = {.lex_state = 259}, + [987] = {.lex_state = 392}, + [988] = {.lex_state = 311}, + [989] = {.lex_state = 389}, + [990] = {.lex_state = 389}, + [991] = {.lex_state = 312}, + [992] = {.lex_state = 389}, + [993] = {.lex_state = 313}, + [994] = {.lex_state = 389}, + [995] = {.lex_state = 303}, + [996] = {.lex_state = 380}, + [997] = {.lex_state = 376}, + [998] = {.lex_state = 303}, + [999] = {.lex_state = 380}, + [1000] = {.lex_state = 303}, + [1001] = {.lex_state = 391}, + [1002] = {.lex_state = 391}, + [1003] = {.lex_state = 391}, + [1004] = {.lex_state = 250}, + [1005] = {.lex_state = 392}, + [1006] = {.lex_state = 312}, + [1007] = {.lex_state = 316}, + [1008] = {.lex_state = 316}, + [1009] = {.lex_state = 393}, + [1010] = {.lex_state = 341}, + [1011] = {.lex_state = 392}, + [1012] = {.lex_state = 389}, + [1013] = {.lex_state = 389}, + [1014] = {.lex_state = 343}, + [1015] = {.lex_state = 341}, + [1016] = {.lex_state = 389}, + [1017] = {.lex_state = 389}, + [1018] = {.lex_state = 389}, + [1019] = {.lex_state = 392}, + [1020] = {.lex_state = 392}, + [1021] = {.lex_state = 392}, + [1022] = {.lex_state = 392}, + [1023] = {.lex_state = 316}, + [1024] = {.lex_state = 345}, + [1025] = {.lex_state = 394}, + [1026] = {.lex_state = 261}, + [1027] = {.lex_state = 303}, + [1028] = {.lex_state = 396}, + [1029] = {.lex_state = 397}, + [1030] = {.lex_state = 303}, + [1031] = {.lex_state = 399}, + [1032] = {.lex_state = 303}, [1033] = {.lex_state = 313}, - [1034] = {.lex_state = 401}, - [1035] = {.lex_state = 398}, - [1036] = {.lex_state = 313}, + [1034] = {.lex_state = 397}, + [1035] = {.lex_state = 400}, + [1036] = {.lex_state = 397}, [1037] = {.lex_state = 313}, [1038] = {.lex_state = 400}, - [1039] = {.lex_state = 303}, - [1040] = {.lex_state = 303}, - [1041] = {.lex_state = 259}, - [1042] = {.lex_state = 367}, - [1043] = {.lex_state = 287}, - [1044] = {.lex_state = 287}, - [1045] = {.lex_state = 310}, - [1046] = {.lex_state = 287}, - [1047] = {.lex_state = 259}, - [1048] = {.lex_state = 367}, - [1049] = {.lex_state = 287}, - [1050] = {.lex_state = 259}, - [1051] = {.lex_state = 367}, - [1052] = {.lex_state = 287}, - [1053] = {.lex_state = 285}, - [1054] = {.lex_state = 285}, - [1055] = {.lex_state = 259}, - [1056] = {.lex_state = 286}, + [1039] = {.lex_state = 397}, + [1040] = {.lex_state = 313}, + [1041] = {.lex_state = 313}, + [1042] = {.lex_state = 399}, + [1043] = {.lex_state = 303}, + [1044] = {.lex_state = 303}, + [1045] = {.lex_state = 259}, + [1046] = {.lex_state = 366}, + [1047] = {.lex_state = 287}, + [1048] = {.lex_state = 287}, + [1049] = {.lex_state = 310}, + [1050] = {.lex_state = 287}, + [1051] = {.lex_state = 259}, + [1052] = {.lex_state = 366}, + [1053] = {.lex_state = 287}, + [1054] = {.lex_state = 259}, + [1055] = {.lex_state = 366}, + [1056] = {.lex_state = 287}, [1057] = {.lex_state = 285}, [1058] = {.lex_state = 285}, - [1059] = {.lex_state = 357}, - [1060] = {.lex_state = 402}, - [1061] = {.lex_state = 287}, - [1062] = {.lex_state = 287}, - [1063] = {.lex_state = 359}, - [1064] = {.lex_state = 295}, - [1065] = {.lex_state = 340}, - [1066] = {.lex_state = 295}, - [1067] = {.lex_state = 309}, - [1068] = {.lex_state = 340}, - [1069] = {.lex_state = 309}, - [1070] = {.lex_state = 287}, - [1071] = {.lex_state = 312}, - [1072] = {.lex_state = 287}, - [1073] = {.lex_state = 313}, + [1059] = {.lex_state = 259}, + [1060] = {.lex_state = 286}, + [1061] = {.lex_state = 285}, + [1062] = {.lex_state = 285}, + [1063] = {.lex_state = 356}, + [1064] = {.lex_state = 401}, + [1065] = {.lex_state = 287}, + [1066] = {.lex_state = 287}, + [1067] = {.lex_state = 358}, + [1068] = {.lex_state = 295}, + [1069] = {.lex_state = 339}, + [1070] = {.lex_state = 295}, + [1071] = {.lex_state = 309}, + [1072] = {.lex_state = 339}, + [1073] = {.lex_state = 309}, [1074] = {.lex_state = 287}, - [1075] = {.lex_state = 287}, - [1076] = {.lex_state = 312}, + [1075] = {.lex_state = 312}, + [1076] = {.lex_state = 287}, [1077] = {.lex_state = 313}, - [1078] = {.lex_state = 309}, - [1079] = {.lex_state = 340}, - [1080] = {.lex_state = 287}, - [1081] = {.lex_state = 312}, - [1082] = {.lex_state = 313}, - [1083] = {.lex_state = 259}, - [1084] = {.lex_state = 367}, - [1085] = {.lex_state = 287}, - [1086] = {.lex_state = 287}, - [1087] = {.lex_state = 310}, - [1088] = {.lex_state = 287}, - [1089] = {.lex_state = 259}, - [1090] = {.lex_state = 367}, - [1091] = {.lex_state = 287}, - [1092] = {.lex_state = 259}, - [1093] = {.lex_state = 367}, - [1094] = {.lex_state = 287}, - [1095] = {.lex_state = 402}, - [1096] = {.lex_state = 287}, - [1097] = {.lex_state = 316}, - [1098] = {.lex_state = 346}, - [1099] = {.lex_state = 403}, - [1100] = {.lex_state = 313}, - [1101] = {.lex_state = 404}, - [1102] = {.lex_state = 405}, - [1103] = {.lex_state = 303}, - [1104] = {.lex_state = 603}, - [1105] = {.lex_state = 604}, - [1106] = {.lex_state = 605}, - [1107] = {.lex_state = 606}, - [1108] = {.lex_state = 320}, - [1109] = {.lex_state = 278}, - [1110] = {.lex_state = 607}, - [1111] = {.lex_state = 346}, - [1112] = {.lex_state = 277}, - [1113] = {.lex_state = 280}, - [1114] = {.lex_state = 287}, - [1115] = {.lex_state = 285}, - [1116] = {.lex_state = 287}, - [1117] = {.lex_state = 285}, - [1118] = {.lex_state = 259}, - [1119] = {.lex_state = 286}, - [1120] = {.lex_state = 285}, + [1078] = {.lex_state = 287}, + [1079] = {.lex_state = 287}, + [1080] = {.lex_state = 312}, + [1081] = {.lex_state = 313}, + [1082] = {.lex_state = 309}, + [1083] = {.lex_state = 339}, + [1084] = {.lex_state = 287}, + [1085] = {.lex_state = 312}, + [1086] = {.lex_state = 313}, + [1087] = {.lex_state = 259}, + [1088] = {.lex_state = 366}, + [1089] = {.lex_state = 287}, + [1090] = {.lex_state = 287}, + [1091] = {.lex_state = 310}, + [1092] = {.lex_state = 287}, + [1093] = {.lex_state = 259}, + [1094] = {.lex_state = 366}, + [1095] = {.lex_state = 287}, + [1096] = {.lex_state = 259}, + [1097] = {.lex_state = 366}, + [1098] = {.lex_state = 287}, + [1099] = {.lex_state = 401}, + [1100] = {.lex_state = 287}, + [1101] = {.lex_state = 316}, + [1102] = {.lex_state = 345}, + [1103] = {.lex_state = 402}, + [1104] = {.lex_state = 313}, + [1105] = {.lex_state = 403}, + [1106] = {.lex_state = 404}, + [1107] = {.lex_state = 303}, + [1108] = {.lex_state = 602}, + [1109] = {.lex_state = 603}, + [1110] = {.lex_state = 604}, + [1111] = {.lex_state = 605}, + [1112] = {.lex_state = 321}, + [1113] = {.lex_state = 278}, + [1114] = {.lex_state = 606}, + [1115] = {.lex_state = 345}, + [1116] = {.lex_state = 277}, + [1117] = {.lex_state = 280}, + [1118] = {.lex_state = 287}, + [1119] = {.lex_state = 285}, + [1120] = {.lex_state = 287}, [1121] = {.lex_state = 285}, [1122] = {.lex_state = 259}, - [1123] = {.lex_state = 259}, - [1124] = {.lex_state = 259}, - [1125] = {.lex_state = 259}, + [1123] = {.lex_state = 286}, + [1124] = {.lex_state = 285}, + [1125] = {.lex_state = 285}, [1126] = {.lex_state = 259}, [1127] = {.lex_state = 259}, [1128] = {.lex_state = 259}, @@ -13605,460 +13677,466 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1131] = {.lex_state = 259}, [1132] = {.lex_state = 259}, [1133] = {.lex_state = 259}, - [1134] = {.lex_state = 608}, + [1134] = {.lex_state = 259}, [1135] = {.lex_state = 259}, - [1136] = {.lex_state = 249}, - [1137] = {.lex_state = 609}, - [1138] = {.lex_state = 610}, - [1139] = {.lex_state = 303}, - [1140] = {.lex_state = 381}, - [1141] = {.lex_state = 303}, - [1142] = {.lex_state = 303}, - [1143] = {.lex_state = 304}, - [1144] = {.lex_state = 331}, - [1145] = {.lex_state = 324}, - [1146] = {.lex_state = 355}, - [1147] = {.lex_state = 270}, - [1148] = {.lex_state = 278}, - [1149] = {.lex_state = 307}, - [1150] = {.lex_state = 344}, - [1151] = {.lex_state = 334}, - [1152] = {.lex_state = 344}, - [1153] = {.lex_state = 316}, - [1154] = {.lex_state = 313}, - [1155] = {.lex_state = 270}, - [1156] = {.lex_state = 390}, - [1157] = {.lex_state = 348}, - [1158] = {.lex_state = 316}, - [1159] = {.lex_state = 390}, - [1160] = {.lex_state = 345}, - [1161] = {.lex_state = 303}, - [1162] = {.lex_state = 355}, - [1163] = {.lex_state = 314}, - [1164] = {.lex_state = 334}, - [1165] = {.lex_state = 339}, - [1166] = {.lex_state = 313}, - [1167] = {.lex_state = 345}, - [1168] = {.lex_state = 346}, - [1169] = {.lex_state = 343}, - [1170] = {.lex_state = 344}, - [1171] = {.lex_state = 612}, - [1172] = {.lex_state = 285}, - [1173] = {.lex_state = 357}, - [1174] = {.lex_state = 270}, - [1175] = {.lex_state = 287}, - [1176] = {.lex_state = 259}, - [1177] = {.lex_state = 367}, - [1178] = {.lex_state = 287}, - [1179] = {.lex_state = 334}, + [1136] = {.lex_state = 259}, + [1137] = {.lex_state = 259}, + [1138] = {.lex_state = 607}, + [1139] = {.lex_state = 259}, + [1140] = {.lex_state = 249}, + [1141] = {.lex_state = 608}, + [1142] = {.lex_state = 609}, + [1143] = {.lex_state = 303}, + [1144] = {.lex_state = 380}, + [1145] = {.lex_state = 303}, + [1146] = {.lex_state = 303}, + [1147] = {.lex_state = 304}, + [1148] = {.lex_state = 330}, + [1149] = {.lex_state = 325}, + [1150] = {.lex_state = 354}, + [1151] = {.lex_state = 270}, + [1152] = {.lex_state = 278}, + [1153] = {.lex_state = 307}, + [1154] = {.lex_state = 343}, + [1155] = {.lex_state = 333}, + [1156] = {.lex_state = 343}, + [1157] = {.lex_state = 316}, + [1158] = {.lex_state = 313}, + [1159] = {.lex_state = 270}, + [1160] = {.lex_state = 389}, + [1161] = {.lex_state = 347}, + [1162] = {.lex_state = 316}, + [1163] = {.lex_state = 389}, + [1164] = {.lex_state = 344}, + [1165] = {.lex_state = 303}, + [1166] = {.lex_state = 354}, + [1167] = {.lex_state = 314}, + [1168] = {.lex_state = 333}, + [1169] = {.lex_state = 338}, + [1170] = {.lex_state = 313}, + [1171] = {.lex_state = 344}, + [1172] = {.lex_state = 345}, + [1173] = {.lex_state = 342}, + [1174] = {.lex_state = 343}, + [1175] = {.lex_state = 611}, + [1176] = {.lex_state = 285}, + [1177] = {.lex_state = 356}, + [1178] = {.lex_state = 270}, + [1179] = {.lex_state = 287}, [1180] = {.lex_state = 259}, - [1181] = {.lex_state = 340}, - [1182] = {.lex_state = 334}, - [1183] = {.lex_state = 307}, + [1181] = {.lex_state = 366}, + [1182] = {.lex_state = 287}, + [1183] = {.lex_state = 333}, [1184] = {.lex_state = 259}, - [1185] = {.lex_state = 331}, - [1186] = {.lex_state = 613}, - [1187] = {.lex_state = 614}, - [1188] = {.lex_state = 311}, - [1189] = {.lex_state = 331}, - [1190] = {.lex_state = 333}, - [1191] = {.lex_state = 311}, - [1192] = {.lex_state = 331}, - [1193] = {.lex_state = 303}, - [1194] = {.lex_state = 303}, - [1195] = {.lex_state = 270}, - [1196] = {.lex_state = 285}, - [1197] = {.lex_state = 285}, - [1198] = {.lex_state = 259}, - [1199] = {.lex_state = 286}, + [1185] = {.lex_state = 339}, + [1186] = {.lex_state = 333}, + [1187] = {.lex_state = 307}, + [1188] = {.lex_state = 259}, + [1189] = {.lex_state = 330}, + [1190] = {.lex_state = 612}, + [1191] = {.lex_state = 613}, + [1192] = {.lex_state = 311}, + [1193] = {.lex_state = 330}, + [1194] = {.lex_state = 332}, + [1195] = {.lex_state = 311}, + [1196] = {.lex_state = 330}, + [1197] = {.lex_state = 303}, + [1198] = {.lex_state = 303}, + [1199] = {.lex_state = 270}, [1200] = {.lex_state = 285}, [1201] = {.lex_state = 285}, - [1202] = {.lex_state = 301}, - [1203] = {.lex_state = 381}, - [1204] = {.lex_state = 303}, - [1205] = {.lex_state = 287}, - [1206] = {.lex_state = 357}, - [1207] = {.lex_state = 359}, - [1208] = {.lex_state = 295}, - [1209] = {.lex_state = 340}, - [1210] = {.lex_state = 295}, - [1211] = {.lex_state = 309}, - [1212] = {.lex_state = 340}, - [1213] = {.lex_state = 309}, - [1214] = {.lex_state = 287}, - [1215] = {.lex_state = 312}, - [1216] = {.lex_state = 287}, - [1217] = {.lex_state = 313}, + [1202] = {.lex_state = 259}, + [1203] = {.lex_state = 286}, + [1204] = {.lex_state = 285}, + [1205] = {.lex_state = 285}, + [1206] = {.lex_state = 301}, + [1207] = {.lex_state = 380}, + [1208] = {.lex_state = 303}, + [1209] = {.lex_state = 287}, + [1210] = {.lex_state = 356}, + [1211] = {.lex_state = 358}, + [1212] = {.lex_state = 295}, + [1213] = {.lex_state = 339}, + [1214] = {.lex_state = 295}, + [1215] = {.lex_state = 309}, + [1216] = {.lex_state = 339}, + [1217] = {.lex_state = 309}, [1218] = {.lex_state = 287}, - [1219] = {.lex_state = 287}, - [1220] = {.lex_state = 312}, + [1219] = {.lex_state = 312}, + [1220] = {.lex_state = 287}, [1221] = {.lex_state = 313}, - [1222] = {.lex_state = 309}, - [1223] = {.lex_state = 340}, - [1224] = {.lex_state = 287}, - [1225] = {.lex_state = 312}, - [1226] = {.lex_state = 313}, - [1227] = {.lex_state = 259}, - [1228] = {.lex_state = 367}, - [1229] = {.lex_state = 287}, - [1230] = {.lex_state = 287}, - [1231] = {.lex_state = 310}, - [1232] = {.lex_state = 287}, - [1233] = {.lex_state = 259}, - [1234] = {.lex_state = 367}, - [1235] = {.lex_state = 287}, - [1236] = {.lex_state = 259}, - [1237] = {.lex_state = 367}, - [1238] = {.lex_state = 287}, - [1239] = {.lex_state = 270}, - [1240] = {.lex_state = 287}, - [1241] = {.lex_state = 615}, - [1242] = {.lex_state = 250}, - [1243] = {.lex_state = 259}, - [1244] = {.lex_state = 259}, - [1245] = {.lex_state = 390}, - [1246] = {.lex_state = 390}, - [1247] = {.lex_state = 390}, - [1248] = {.lex_state = 390}, - [1249] = {.lex_state = 390}, - [1250] = {.lex_state = 390}, - [1251] = {.lex_state = 316}, - [1252] = {.lex_state = 346}, - [1253] = {.lex_state = 259}, - [1254] = {.lex_state = 605}, - [1255] = {.lex_state = 603}, - [1256] = {.lex_state = 607}, - [1257] = {.lex_state = 287}, - [1258] = {.lex_state = 390}, - [1259] = {.lex_state = 390}, - [1260] = {.lex_state = 250}, + [1222] = {.lex_state = 287}, + [1223] = {.lex_state = 287}, + [1224] = {.lex_state = 312}, + [1225] = {.lex_state = 313}, + [1226] = {.lex_state = 309}, + [1227] = {.lex_state = 339}, + [1228] = {.lex_state = 287}, + [1229] = {.lex_state = 312}, + [1230] = {.lex_state = 313}, + [1231] = {.lex_state = 259}, + [1232] = {.lex_state = 366}, + [1233] = {.lex_state = 287}, + [1234] = {.lex_state = 287}, + [1235] = {.lex_state = 310}, + [1236] = {.lex_state = 287}, + [1237] = {.lex_state = 259}, + [1238] = {.lex_state = 366}, + [1239] = {.lex_state = 287}, + [1240] = {.lex_state = 259}, + [1241] = {.lex_state = 366}, + [1242] = {.lex_state = 287}, + [1243] = {.lex_state = 270}, + [1244] = {.lex_state = 287}, + [1245] = {.lex_state = 614}, + [1246] = {.lex_state = 250}, + [1247] = {.lex_state = 259}, + [1248] = {.lex_state = 259}, + [1249] = {.lex_state = 389}, + [1250] = {.lex_state = 389}, + [1251] = {.lex_state = 389}, + [1252] = {.lex_state = 389}, + [1253] = {.lex_state = 389}, + [1254] = {.lex_state = 389}, + [1255] = {.lex_state = 316}, + [1256] = {.lex_state = 345}, + [1257] = {.lex_state = 259}, + [1258] = {.lex_state = 604}, + [1259] = {.lex_state = 602}, + [1260] = {.lex_state = 606}, [1261] = {.lex_state = 287}, - [1262] = {.lex_state = 309}, - [1263] = {.lex_state = 259}, - [1264] = {.lex_state = 259}, - [1265] = {.lex_state = 259}, - [1266] = {.lex_state = 259}, + [1262] = {.lex_state = 389}, + [1263] = {.lex_state = 389}, + [1264] = {.lex_state = 250}, + [1265] = {.lex_state = 287}, + [1266] = {.lex_state = 309}, [1267] = {.lex_state = 259}, - [1268] = {.lex_state = 616}, - [1269] = {.lex_state = 287}, - [1270] = {.lex_state = 309}, + [1268] = {.lex_state = 259}, + [1269] = {.lex_state = 259}, + [1270] = {.lex_state = 259}, [1271] = {.lex_state = 259}, - [1272] = {.lex_state = 259}, - [1273] = {.lex_state = 259}, - [1274] = {.lex_state = 259}, + [1272] = {.lex_state = 615}, + [1273] = {.lex_state = 287}, + [1274] = {.lex_state = 309}, [1275] = {.lex_state = 259}, [1276] = {.lex_state = 259}, [1277] = {.lex_state = 259}, [1278] = {.lex_state = 259}, - [1279] = {.lex_state = 313}, - [1280] = {.lex_state = 287}, - [1281] = {.lex_state = 270}, - [1282] = {.lex_state = 616}, - [1283] = {.lex_state = 616}, - [1284] = {.lex_state = 616}, - [1285] = {.lex_state = 616}, - [1286] = {.lex_state = 616}, - [1287] = {.lex_state = 616}, - [1288] = {.lex_state = 616}, - [1289] = {.lex_state = 310}, - [1290] = {.lex_state = 259}, - [1291] = {.lex_state = 616}, - [1292] = {.lex_state = 287}, - [1293] = {.lex_state = 312}, - [1294] = {.lex_state = 287}, - [1295] = {.lex_state = 313}, + [1279] = {.lex_state = 259}, + [1280] = {.lex_state = 259}, + [1281] = {.lex_state = 259}, + [1282] = {.lex_state = 259}, + [1283] = {.lex_state = 313}, + [1284] = {.lex_state = 287}, + [1285] = {.lex_state = 270}, + [1286] = {.lex_state = 615}, + [1287] = {.lex_state = 615}, + [1288] = {.lex_state = 615}, + [1289] = {.lex_state = 615}, + [1290] = {.lex_state = 615}, + [1291] = {.lex_state = 615}, + [1292] = {.lex_state = 615}, + [1293] = {.lex_state = 310}, + [1294] = {.lex_state = 259}, + [1295] = {.lex_state = 615}, [1296] = {.lex_state = 287}, - [1297] = {.lex_state = 270}, - [1298] = {.lex_state = 250}, - [1299] = {.lex_state = 616}, - [1300] = {.lex_state = 316}, - [1301] = {.lex_state = 617}, - [1302] = {.lex_state = 616}, - [1303] = {.lex_state = 616}, - [1304] = {.lex_state = 616}, + [1297] = {.lex_state = 312}, + [1298] = {.lex_state = 287}, + [1299] = {.lex_state = 313}, + [1300] = {.lex_state = 287}, + [1301] = {.lex_state = 270}, + [1302] = {.lex_state = 250}, + [1303] = {.lex_state = 615}, + [1304] = {.lex_state = 316}, [1305] = {.lex_state = 616}, - [1306] = {.lex_state = 616}, - [1307] = {.lex_state = 287}, - [1308] = {.lex_state = 312}, - [1309] = {.lex_state = 313}, - [1310] = {.lex_state = 270}, - [1311] = {.lex_state = 316}, - [1312] = {.lex_state = 346}, - [1313] = {.lex_state = 270}, - [1314] = {.lex_state = 616}, - [1315] = {.lex_state = 259}, - [1316] = {.lex_state = 616}, - [1317] = {.lex_state = 331}, - [1318] = {.lex_state = 350}, - [1319] = {.lex_state = 307}, - [1320] = {.lex_state = 307}, - [1321] = {.lex_state = 303}, - [1322] = {.lex_state = 328}, - [1323] = {.lex_state = 259}, - [1324] = {.lex_state = 331}, - [1325] = {.lex_state = 324}, - [1326] = {.lex_state = 355}, - [1327] = {.lex_state = 303}, - [1328] = {.lex_state = 337}, - [1329] = {.lex_state = 303}, - [1330] = {.lex_state = 259}, + [1306] = {.lex_state = 615}, + [1307] = {.lex_state = 615}, + [1308] = {.lex_state = 615}, + [1309] = {.lex_state = 615}, + [1310] = {.lex_state = 615}, + [1311] = {.lex_state = 287}, + [1312] = {.lex_state = 312}, + [1313] = {.lex_state = 313}, + [1314] = {.lex_state = 270}, + [1315] = {.lex_state = 316}, + [1316] = {.lex_state = 345}, + [1317] = {.lex_state = 270}, + [1318] = {.lex_state = 615}, + [1319] = {.lex_state = 259}, + [1320] = {.lex_state = 615}, + [1321] = {.lex_state = 330}, + [1322] = {.lex_state = 349}, + [1323] = {.lex_state = 307}, + [1324] = {.lex_state = 307}, + [1325] = {.lex_state = 303}, + [1326] = {.lex_state = 328}, + [1327] = {.lex_state = 259}, + [1328] = {.lex_state = 330}, + [1329] = {.lex_state = 325}, + [1330] = {.lex_state = 354}, [1331] = {.lex_state = 303}, - [1332] = {.lex_state = 340}, - [1333] = {.lex_state = 334}, - [1334] = {.lex_state = 337}, - [1335] = {.lex_state = 618}, - [1336] = {.lex_state = 331}, - [1337] = {.lex_state = 340}, - [1338] = {.lex_state = 619}, - [1339] = {.lex_state = 328}, - [1340] = {.lex_state = 620}, - [1341] = {.lex_state = 309}, - [1342] = {.lex_state = 340}, - [1343] = {.lex_state = 287}, - [1344] = {.lex_state = 312}, - [1345] = {.lex_state = 313}, - [1346] = {.lex_state = 303}, - [1347] = {.lex_state = 621}, - [1348] = {.lex_state = 270}, - [1349] = {.lex_state = 276}, - [1350] = {.lex_state = 622}, - [1351] = {.lex_state = 374}, - [1352] = {.lex_state = 277}, - [1353] = {.lex_state = 336}, - [1354] = {.lex_state = 334}, - [1355] = {.lex_state = 307}, - [1356] = {.lex_state = 276}, - [1357] = {.lex_state = 337}, - [1358] = {.lex_state = 623}, - [1359] = {.lex_state = 276}, - [1360] = {.lex_state = 312}, - [1361] = {.lex_state = 316}, - [1362] = {.lex_state = 624}, - [1363] = {.lex_state = 390}, - [1364] = {.lex_state = 250}, - [1365] = {.lex_state = 390}, - [1366] = {.lex_state = 316}, - [1367] = {.lex_state = 615}, - [1368] = {.lex_state = 390}, - [1369] = {.lex_state = 390}, - [1370] = {.lex_state = 390}, - [1371] = {.lex_state = 390}, - [1372] = {.lex_state = 390}, - [1373] = {.lex_state = 390}, - [1374] = {.lex_state = 390}, - [1375] = {.lex_state = 390}, - [1376] = {.lex_state = 310}, - [1377] = {.lex_state = 259}, - [1378] = {.lex_state = 390}, - [1379] = {.lex_state = 359}, - [1380] = {.lex_state = 295}, - [1381] = {.lex_state = 340}, - [1382] = {.lex_state = 295}, - [1383] = {.lex_state = 340}, - [1384] = {.lex_state = 259}, - [1385] = {.lex_state = 367}, - [1386] = {.lex_state = 270}, - [1387] = {.lex_state = 287}, - [1388] = {.lex_state = 310}, - [1389] = {.lex_state = 287}, - [1390] = {.lex_state = 259}, - [1391] = {.lex_state = 367}, - [1392] = {.lex_state = 287}, - [1393] = {.lex_state = 259}, - [1394] = {.lex_state = 367}, - [1395] = {.lex_state = 287}, - [1396] = {.lex_state = 270}, - [1397] = {.lex_state = 270}, - [1398] = {.lex_state = 390}, - [1399] = {.lex_state = 270}, - [1400] = {.lex_state = 390}, - [1401] = {.lex_state = 625}, - [1402] = {.lex_state = 331}, - [1403] = {.lex_state = 327}, - [1404] = {.lex_state = 331}, - [1405] = {.lex_state = 327}, - [1406] = {.lex_state = 331}, - [1407] = {.lex_state = 311}, - [1408] = {.lex_state = 320}, - [1409] = {.lex_state = 311}, - [1410] = {.lex_state = 607}, - [1411] = {.lex_state = 626}, - [1412] = {.lex_state = 606}, - [1413] = {.lex_state = 607}, - [1414] = {.lex_state = 390}, - [1415] = {.lex_state = 626}, - [1416] = {.lex_state = 627}, - [1417] = {.lex_state = 312}, - [1418] = {.lex_state = 616}, - [1419] = {.lex_state = 250}, - [1420] = {.lex_state = 604}, - [1421] = {.lex_state = 605}, - [1422] = {.lex_state = 259}, - [1423] = {.lex_state = 259}, - [1424] = {.lex_state = 259}, - [1425] = {.lex_state = 259}, - [1426] = {.lex_state = 259}, - [1427] = {.lex_state = 374}, - [1428] = {.lex_state = 628}, - [1429] = {.lex_state = 276}, + [1332] = {.lex_state = 336}, + [1333] = {.lex_state = 303}, + [1334] = {.lex_state = 259}, + [1335] = {.lex_state = 303}, + [1336] = {.lex_state = 339}, + [1337] = {.lex_state = 333}, + [1338] = {.lex_state = 336}, + [1339] = {.lex_state = 617}, + [1340] = {.lex_state = 330}, + [1341] = {.lex_state = 339}, + [1342] = {.lex_state = 618}, + [1343] = {.lex_state = 328}, + [1344] = {.lex_state = 619}, + [1345] = {.lex_state = 309}, + [1346] = {.lex_state = 339}, + [1347] = {.lex_state = 287}, + [1348] = {.lex_state = 312}, + [1349] = {.lex_state = 313}, + [1350] = {.lex_state = 303}, + [1351] = {.lex_state = 620}, + [1352] = {.lex_state = 270}, + [1353] = {.lex_state = 276}, + [1354] = {.lex_state = 621}, + [1355] = {.lex_state = 373}, + [1356] = {.lex_state = 277}, + [1357] = {.lex_state = 335}, + [1358] = {.lex_state = 333}, + [1359] = {.lex_state = 307}, + [1360] = {.lex_state = 276}, + [1361] = {.lex_state = 336}, + [1362] = {.lex_state = 622}, + [1363] = {.lex_state = 276}, + [1364] = {.lex_state = 312}, + [1365] = {.lex_state = 316}, + [1366] = {.lex_state = 623}, + [1367] = {.lex_state = 389}, + [1368] = {.lex_state = 250}, + [1369] = {.lex_state = 389}, + [1370] = {.lex_state = 316}, + [1371] = {.lex_state = 614}, + [1372] = {.lex_state = 389}, + [1373] = {.lex_state = 389}, + [1374] = {.lex_state = 389}, + [1375] = {.lex_state = 389}, + [1376] = {.lex_state = 389}, + [1377] = {.lex_state = 389}, + [1378] = {.lex_state = 389}, + [1379] = {.lex_state = 389}, + [1380] = {.lex_state = 310}, + [1381] = {.lex_state = 259}, + [1382] = {.lex_state = 389}, + [1383] = {.lex_state = 358}, + [1384] = {.lex_state = 295}, + [1385] = {.lex_state = 339}, + [1386] = {.lex_state = 295}, + [1387] = {.lex_state = 339}, + [1388] = {.lex_state = 259}, + [1389] = {.lex_state = 366}, + [1390] = {.lex_state = 270}, + [1391] = {.lex_state = 287}, + [1392] = {.lex_state = 310}, + [1393] = {.lex_state = 287}, + [1394] = {.lex_state = 259}, + [1395] = {.lex_state = 366}, + [1396] = {.lex_state = 287}, + [1397] = {.lex_state = 259}, + [1398] = {.lex_state = 366}, + [1399] = {.lex_state = 287}, + [1400] = {.lex_state = 270}, + [1401] = {.lex_state = 270}, + [1402] = {.lex_state = 389}, + [1403] = {.lex_state = 270}, + [1404] = {.lex_state = 389}, + [1405] = {.lex_state = 624}, + [1406] = {.lex_state = 330}, + [1407] = {.lex_state = 327}, + [1408] = {.lex_state = 330}, + [1409] = {.lex_state = 327}, + [1410] = {.lex_state = 330}, + [1411] = {.lex_state = 311}, + [1412] = {.lex_state = 321}, + [1413] = {.lex_state = 311}, + [1414] = {.lex_state = 606}, + [1415] = {.lex_state = 625}, + [1416] = {.lex_state = 605}, + [1417] = {.lex_state = 606}, + [1418] = {.lex_state = 389}, + [1419] = {.lex_state = 625}, + [1420] = {.lex_state = 626}, + [1421] = {.lex_state = 627}, + [1422] = {.lex_state = 328}, + [1423] = {.lex_state = 325}, + [1424] = {.lex_state = 615}, + [1425] = {.lex_state = 250}, + [1426] = {.lex_state = 603}, + [1427] = {.lex_state = 604}, + [1428] = {.lex_state = 259}, + [1429] = {.lex_state = 259}, [1430] = {.lex_state = 259}, [1431] = {.lex_state = 259}, [1432] = {.lex_state = 259}, - [1433] = {.lex_state = 259}, - [1434] = {.lex_state = 259}, - [1435] = {.lex_state = 259}, + [1433] = {.lex_state = 373}, + [1434] = {.lex_state = 628}, + [1435] = {.lex_state = 276}, [1436] = {.lex_state = 259}, [1437] = {.lex_state = 259}, - [1438] = {.lex_state = 628}, - [1439] = {.lex_state = 628}, - [1440] = {.lex_state = 628}, - [1441] = {.lex_state = 628}, - [1442] = {.lex_state = 628}, - [1443] = {.lex_state = 628}, + [1438] = {.lex_state = 259}, + [1439] = {.lex_state = 259}, + [1440] = {.lex_state = 259}, + [1441] = {.lex_state = 259}, + [1442] = {.lex_state = 259}, + [1443] = {.lex_state = 259}, [1444] = {.lex_state = 628}, - [1445] = {.lex_state = 310}, - [1446] = {.lex_state = 259}, + [1445] = {.lex_state = 628}, + [1446] = {.lex_state = 628}, [1447] = {.lex_state = 628}, - [1448] = {.lex_state = 250}, + [1448] = {.lex_state = 628}, [1449] = {.lex_state = 628}, - [1450] = {.lex_state = 316}, - [1451] = {.lex_state = 629}, - [1452] = {.lex_state = 628}, + [1450] = {.lex_state = 628}, + [1451] = {.lex_state = 310}, + [1452] = {.lex_state = 259}, [1453] = {.lex_state = 628}, - [1454] = {.lex_state = 628}, + [1454] = {.lex_state = 250}, [1455] = {.lex_state = 628}, - [1456] = {.lex_state = 628}, - [1457] = {.lex_state = 630}, - [1458] = {.lex_state = 316}, - [1459] = {.lex_state = 346}, - [1460] = {.lex_state = 287}, - [1461] = {.lex_state = 309}, - [1462] = {.lex_state = 616}, - [1463] = {.lex_state = 287}, - [1464] = {.lex_state = 309}, - [1465] = {.lex_state = 313}, + [1456] = {.lex_state = 316}, + [1457] = {.lex_state = 629}, + [1458] = {.lex_state = 628}, + [1459] = {.lex_state = 628}, + [1460] = {.lex_state = 628}, + [1461] = {.lex_state = 628}, + [1462] = {.lex_state = 628}, + [1463] = {.lex_state = 630}, + [1464] = {.lex_state = 316}, + [1465] = {.lex_state = 345}, [1466] = {.lex_state = 287}, - [1467] = {.lex_state = 312}, - [1468] = {.lex_state = 270}, + [1467] = {.lex_state = 309}, + [1468] = {.lex_state = 615}, [1469] = {.lex_state = 287}, - [1470] = {.lex_state = 312}, + [1470] = {.lex_state = 309}, [1471] = {.lex_state = 313}, - [1472] = {.lex_state = 270}, - [1473] = {.lex_state = 270}, - [1474] = {.lex_state = 604}, - [1475] = {.lex_state = 270}, - [1476] = {.lex_state = 390}, - [1477] = {.lex_state = 605}, - [1478] = {.lex_state = 250}, - [1479] = {.lex_state = 313}, - [1480] = {.lex_state = 631}, - [1481] = {.lex_state = 259}, - [1482] = {.lex_state = 259}, - [1483] = {.lex_state = 259}, - [1484] = {.lex_state = 259}, - [1485] = {.lex_state = 259}, - [1486] = {.lex_state = 259}, - [1487] = {.lex_state = 632}, - [1488] = {.lex_state = 618}, - [1489] = {.lex_state = 355}, - [1490] = {.lex_state = 313}, - [1491] = {.lex_state = 633}, + [1472] = {.lex_state = 287}, + [1473] = {.lex_state = 312}, + [1474] = {.lex_state = 270}, + [1475] = {.lex_state = 287}, + [1476] = {.lex_state = 312}, + [1477] = {.lex_state = 313}, + [1478] = {.lex_state = 270}, + [1479] = {.lex_state = 270}, + [1480] = {.lex_state = 603}, + [1481] = {.lex_state = 270}, + [1482] = {.lex_state = 389}, + [1483] = {.lex_state = 604}, + [1484] = {.lex_state = 250}, + [1485] = {.lex_state = 313}, + [1486] = {.lex_state = 631}, + [1487] = {.lex_state = 259}, + [1488] = {.lex_state = 259}, + [1489] = {.lex_state = 259}, + [1490] = {.lex_state = 259}, + [1491] = {.lex_state = 259}, [1492] = {.lex_state = 259}, - [1493] = {.lex_state = 259}, - [1494] = {.lex_state = 259}, - [1495] = {.lex_state = 259}, - [1496] = {.lex_state = 259}, - [1497] = {.lex_state = 259}, + [1493] = {.lex_state = 632}, + [1494] = {.lex_state = 617}, + [1495] = {.lex_state = 354}, + [1496] = {.lex_state = 313}, + [1497] = {.lex_state = 633}, [1498] = {.lex_state = 259}, [1499] = {.lex_state = 259}, - [1500] = {.lex_state = 250}, - [1501] = {.lex_state = 633}, - [1502] = {.lex_state = 633}, - [1503] = {.lex_state = 316}, - [1504] = {.lex_state = 346}, - [1505] = {.lex_state = 633}, - [1506] = {.lex_state = 633}, + [1500] = {.lex_state = 259}, + [1501] = {.lex_state = 259}, + [1502] = {.lex_state = 259}, + [1503] = {.lex_state = 259}, + [1504] = {.lex_state = 259}, + [1505] = {.lex_state = 259}, + [1506] = {.lex_state = 250}, [1507] = {.lex_state = 633}, [1508] = {.lex_state = 633}, - [1509] = {.lex_state = 633}, - [1510] = {.lex_state = 633}, + [1509] = {.lex_state = 316}, + [1510] = {.lex_state = 345}, [1511] = {.lex_state = 633}, - [1512] = {.lex_state = 310}, - [1513] = {.lex_state = 259}, + [1512] = {.lex_state = 633}, + [1513] = {.lex_state = 633}, [1514] = {.lex_state = 633}, - [1515] = {.lex_state = 250}, + [1515] = {.lex_state = 633}, [1516] = {.lex_state = 633}, - [1517] = {.lex_state = 316}, - [1518] = {.lex_state = 634}, - [1519] = {.lex_state = 633}, + [1517] = {.lex_state = 633}, + [1518] = {.lex_state = 310}, + [1519] = {.lex_state = 259}, [1520] = {.lex_state = 633}, - [1521] = {.lex_state = 633}, - [1522] = {.lex_state = 635}, - [1523] = {.lex_state = 250}, - [1524] = {.lex_state = 259}, - [1525] = {.lex_state = 329}, - [1526] = {.lex_state = 313}, - [1527] = {.lex_state = 328}, - [1528] = {.lex_state = 626}, - [1529] = {.lex_state = 313}, - [1530] = {.lex_state = 636}, - [1531] = {.lex_state = 627}, - [1532] = {.lex_state = 639}, - [1533] = {.lex_state = 304}, + [1521] = {.lex_state = 250}, + [1522] = {.lex_state = 633}, + [1523] = {.lex_state = 316}, + [1524] = {.lex_state = 634}, + [1525] = {.lex_state = 633}, + [1526] = {.lex_state = 633}, + [1527] = {.lex_state = 633}, + [1528] = {.lex_state = 635}, + [1529] = {.lex_state = 250}, + [1530] = {.lex_state = 259}, + [1531] = {.lex_state = 312}, + [1532] = {.lex_state = 329}, + [1533] = {.lex_state = 313}, [1534] = {.lex_state = 328}, - [1535] = {.lex_state = 616}, - [1536] = {.lex_state = 259}, - [1537] = {.lex_state = 605}, - [1538] = {.lex_state = 270}, - [1539] = {.lex_state = 312}, - [1540] = {.lex_state = 328}, - [1541] = {.lex_state = 640}, - [1542] = {.lex_state = 324}, - [1543] = {.lex_state = 328}, - [1544] = {.lex_state = 640}, + [1535] = {.lex_state = 625}, + [1536] = {.lex_state = 313}, + [1537] = {.lex_state = 636}, + [1538] = {.lex_state = 626}, + [1539] = {.lex_state = 639}, + [1540] = {.lex_state = 304}, + [1541] = {.lex_state = 328}, + [1542] = {.lex_state = 615}, + [1543] = {.lex_state = 259}, + [1544] = {.lex_state = 604}, + [1545] = {.lex_state = 270}, + [1546] = {.lex_state = 312}, + [1547] = {.lex_state = 328}, + [1548] = {.lex_state = 640}, + [1549] = {.lex_state = 328}, + [1550] = {.lex_state = 640}, }; static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { [sym_translation_unit] = STATE(37), - [sym__top_level_item] = STATE(1139), + [sym__top_level_item] = STATE(1143), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), [sym_preproc_def] = STATE(40), [sym_preproc_function_def] = STATE(40), - [sym_preproc_params] = STATE(1025), + [sym_preproc_params] = STATE(1029), [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(1140), - [sym_function_definition] = STATE(1141), - [sym_declaration] = STATE(1142), - [sym__declaration_specifiers] = STATE(1143), + [sym_preproc_else] = STATE(1144), + [sym_function_definition] = STATE(1145), + [sym_declaration] = STATE(1146), + [sym__declaration_specifiers] = STATE(1147), [sym_linkage_specification] = STATE(39), - [sym_declaration_list] = STATE(754), - [sym__declarator] = STATE(1144), - [sym__abstract_declarator] = STATE(1145), - [sym_pointer_declarator] = STATE(240), + [sym_declaration_list] = STATE(758), + [sym__declarator] = STATE(1148), + [sym__abstract_declarator] = STATE(1149), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_init_declarator] = STATE(1146), - [sym_compound_statement] = STATE(1147), - [sym_storage_class_specifier] = STATE(1112), - [sym_type_qualifier] = STATE(1148), - [sym__type_specifier] = STATE(1149), + [sym_init_declarator] = STATE(1150), + [sym_compound_statement] = STATE(1151), + [sym_storage_class_specifier] = STATE(1116), + [sym_type_qualifier] = STATE(1152), + [sym__type_specifier] = STATE(1153), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), - [sym__enum_specifier_contents] = STATE(1150), + [sym__enum_specifier_contents] = STATE(1154), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(1151), - [sym_enumerator] = STATE(1152), - [sym_parameter_type_list] = STATE(1153), - [sym_parameter_declaration] = STATE(1154), - [sym__statement] = STATE(1155), + [sym_struct_declaration] = STATE(1155), + [sym_enumerator] = STATE(1156), + [sym_parameter_type_list] = STATE(1157), + [sym_parameter_declaration] = STATE(1158), + [sym__statement] = STATE(1159), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -14071,44 +14149,44 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(1156), - [sym_comma_expression] = STATE(1157), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_argument_list] = STATE(968), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_type_name] = STATE(1158), - [sym_initializer_list] = STATE(1159), - [sym__initializer_list_contents] = STATE(1010), - [sym_designator] = STATE(1160), - [sym_concatenated_string] = STATE(947), + [sym__expression] = STATE(1160), + [sym_comma_expression] = STATE(1161), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_argument_list] = STATE(972), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_type_name] = STATE(1162), + [sym_initializer_list] = STATE(1163), + [sym__initializer_list_contents] = STATE(1014), + [sym_designator] = STATE(1164), + [sym_concatenated_string] = STATE(951), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(1161), - [aux_sym_preproc_params_repeat1] = STATE(1033), - [aux_sym_declaration_repeat1] = STATE(1162), + [aux_sym_translation_unit_repeat1] = STATE(1165), + [aux_sym_preproc_params_repeat1] = STATE(1037), + [aux_sym_declaration_repeat1] = STATE(1166), [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [aux_sym_array_declarator_repeat1] = STATE(1163), + [aux_sym_array_declarator_repeat1] = STATE(1167), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_struct_specifier_repeat1] = STATE(1164), - [aux_sym_struct_declaration_repeat1] = STATE(1165), + [aux_sym_struct_specifier_repeat1] = STATE(1168), + [aux_sym_struct_declaration_repeat1] = STATE(1169), [aux_sym_parameter_type_list_repeat1] = STATE(233), - [aux_sym_for_statement_repeat1] = STATE(1166), - [aux_sym__initializer_list_contents_repeat1] = STATE(1167), - [aux_sym_concatenated_string_repeat1] = STATE(998), + [aux_sym_for_statement_repeat1] = STATE(1170), + [aux_sym__initializer_list_contents_repeat1] = STATE(1171), + [aux_sym_concatenated_string_repeat1] = STATE(1002), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_POUNDinclude] = ACTIONS(3), [anon_sym_POUNDdefine] = ACTIONS(5), @@ -14342,7 +14420,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1097), + [sym_type_name] = STATE(1101), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -14373,24 +14451,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [5] = { - [sym__expression] = STATE(950), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [sym__expression] = STATE(954), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -14546,7 +14624,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(672), + [aux_sym_translation_unit_repeat1] = STATE(676), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_POUNDinclude] = ACTIONS(127), @@ -14601,7 +14679,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [11] = { - [sym__expression] = STATE(403), + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -14744,7 +14822,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [21] = { - [sym__expression] = STATE(1045), + [sym__expression] = STATE(1049), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -14788,7 +14866,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [24] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(540), + [sym__statement] = STATE(544), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -14854,7 +14932,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [26] = { - [sym__expression] = STATE(500), + [sym__expression] = STATE(504), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -14902,7 +14980,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [30] = { - [sym__expression] = STATE(402), + [sym__expression] = STATE(406), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -14937,7 +15015,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [31] = { - [sym__expression] = STATE(401), + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -14972,7 +15050,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [32] = { - [sym__expression] = STATE(400), + [sym__expression] = STATE(404), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -15007,7 +15085,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [33] = { - [sym__expression] = STATE(492), + [sym__expression] = STATE(496), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -15346,7 +15424,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [41] = { - [sym__type_specifier] = STATE(481), + [sym__type_specifier] = STATE(485), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -15419,11 +15497,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [43] = { - [sym__declarator] = STATE(465), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(466), + [sym__declarator] = STATE(469), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(470), [anon_sym_LPAREN] = ACTIONS(417), [anon_sym_SEMI] = ACTIONS(419), [anon_sym_STAR] = ACTIONS(421), @@ -15822,8 +15900,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [56] = { - [sym__expression] = STATE(462), - [sym_comma_expression] = STATE(399), + [sym__expression] = STATE(466), + [sym_comma_expression] = STATE(403), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -16987,7 +17065,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(460), + [sym_type_name] = STATE(464), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -17018,7 +17096,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [87] = { - [sym__expression] = STATE(403), + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -17053,7 +17131,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [88] = { - [sym__expression] = STATE(402), + [sym__expression] = STATE(406), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -17088,7 +17166,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [89] = { - [sym__expression] = STATE(401), + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -17123,7 +17201,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [90] = { - [sym__expression] = STATE(400), + [sym__expression] = STATE(404), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -17158,7 +17236,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [91] = { - [sym__expression] = STATE(457), + [sym__expression] = STATE(461), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -18282,7 +18360,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(454), + [sym_type_name] = STATE(458), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -18313,7 +18391,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [121] = { - [sym__expression] = STATE(403), + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -18348,7 +18426,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [122] = { - [sym__expression] = STATE(402), + [sym__expression] = STATE(406), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -18383,7 +18461,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [123] = { - [sym__expression] = STATE(401), + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -18418,7 +18496,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [124] = { - [sym__expression] = STATE(400), + [sym__expression] = STATE(404), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -18453,7 +18531,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [125] = { - [sym__expression] = STATE(451), + [sym__expression] = STATE(455), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -19545,7 +19623,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(448), + [sym_type_name] = STATE(452), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -19621,7 +19699,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [155] = { - [sym__expression] = STATE(403), + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -19656,7 +19734,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [156] = { - [sym__expression] = STATE(402), + [sym__expression] = STATE(406), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -19691,7 +19769,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [157] = { - [sym__expression] = STATE(401), + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -19726,7 +19804,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [158] = { - [sym__expression] = STATE(400), + [sym__expression] = STATE(404), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -21350,7 +21428,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [200] = { - [sym__abstract_declarator] = STATE(447), + [sym__abstract_declarator] = STATE(451), [sym_abstract_pointer_declarator] = STATE(213), [sym_abstract_function_declarator] = STATE(213), [sym_abstract_array_declarator] = STATE(213), @@ -21493,29 +21571,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [209] = { - [sym__abstract_declarator] = STATE(269), + [sym__declaration_specifiers] = STATE(229), + [sym__abstract_declarator] = STATE(272), [sym_abstract_pointer_declarator] = STATE(213), [sym_abstract_function_declarator] = STATE(213), [sym_abstract_array_declarator] = STATE(213), + [sym_storage_class_specifier] = STATE(14), + [sym_type_qualifier] = STATE(14), + [sym__type_specifier] = STATE(230), + [sym_sized_type_specifier] = STATE(44), + [sym_enum_specifier] = STATE(44), + [sym_struct_specifier] = STATE(44), + [sym_union_specifier] = STATE(44), + [sym_parameter_type_list] = STATE(273), + [sym_parameter_declaration] = STATE(227), + [sym_macro_type_specifier] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(48), + [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(724), [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_static] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(147), + [anon_sym_auto] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_const] = ACTIONS(149), + [anon_sym_restrict] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [sym_function_specifier] = ACTIONS(151), + [anon_sym_unsigned] = ACTIONS(153), + [anon_sym_long] = ACTIONS(153), + [anon_sym_short] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_struct] = ACTIONS(157), + [anon_sym_union] = ACTIONS(159), + [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, [210] = { - [sym__abstract_declarator] = STATE(266), + [sym__abstract_declarator] = STATE(267), [sym_abstract_pointer_declarator] = STATE(213), [sym_abstract_function_declarator] = STATE(213), [sym_abstract_array_declarator] = STATE(213), [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(753), [anon_sym_STAR] = ACTIONS(724), [anon_sym_LBRACK] = ACTIONS(726), [sym_comment] = ACTIONS(123), }, [211] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(261), + [sym__expression] = STATE(262), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -21533,11 +21642,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [aux_sym_array_declarator_repeat1] = STATE(262), + [aux_sym_array_declarator_repeat1] = STATE(263), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_static] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(757), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -21556,16 +21665,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [212] = { - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(763), [sym_comment] = ACTIONS(123), }, [213] = { - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(761), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), [sym_comment] = ACTIONS(123), }, [214] = { @@ -21582,8 +21691,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_DOT_DOT_DOT] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(767), [anon_sym_extern] = ACTIONS(147), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -21625,8 +21734,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_array_declarator_repeat1] = STATE(219), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(767), - [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_static] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(771), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -21667,7 +21776,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_array_declarator_repeat1] = STATE(226), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(773), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -21686,10 +21795,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [217] = { - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_COMMA] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(775), [sym_comment] = ACTIONS(123), }, [218] = { @@ -21697,7 +21806,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(773), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -21755,8 +21864,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(775), - [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_static] = ACTIONS(777), + [anon_sym_RBRACK] = ACTIONS(773), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -21810,10 +21919,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [221] = { - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(779), [sym_comment] = ACTIONS(123), }, [222] = { @@ -21821,7 +21930,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_RBRACK] = ACTIONS(781), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -21858,10 +21967,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [223] = { - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(783), [sym_comment] = ACTIONS(123), }, [224] = { @@ -21869,7 +21978,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(783), + [anon_sym_RBRACK] = ACTIONS(785), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -21906,10 +22015,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [225] = { - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), [sym_comment] = ACTIONS(123), }, [226] = { @@ -21934,7 +22043,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_RBRACK] = ACTIONS(781), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -21954,19 +22063,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [227] = { [aux_sym_parameter_type_list_repeat1] = STATE(233), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(791), [sym_comment] = ACTIONS(123), }, [228] = { - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_COMMA] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), [sym_comment] = ACTIONS(123), }, [229] = { - [sym__type_specifier] = STATE(272), + [sym__type_specifier] = STATE(279), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -21985,22 +22094,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [230] = { [sym__declarator] = STATE(241), [sym__abstract_declarator] = STATE(242), - [sym_pointer_declarator] = STATE(240), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(726), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, [231] = { - [anon_sym_RPAREN] = ACTIONS(799), + [anon_sym_RPAREN] = ACTIONS(801), [sym_comment] = ACTIONS(123), }, [232] = { @@ -22016,7 +22125,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_DOT_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(803), [anon_sym_extern] = ACTIONS(147), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -22036,8 +22145,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [233] = { - [anon_sym_COMMA] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_COMMA] = ACTIONS(805), + [anon_sym_RPAREN] = ACTIONS(807), [sym_comment] = ACTIONS(123), }, [234] = { @@ -22053,7 +22162,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(809), [anon_sym_extern] = ACTIONS(147), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -22073,80 +22182,121 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [235] = { - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(123), - }, - [236] = { [anon_sym_COMMA] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(811), [sym_comment] = ACTIONS(123), }, - [237] = { - [anon_sym_LPAREN] = ACTIONS(813), + [236] = { [anon_sym_COMMA] = ACTIONS(813), [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(813), + [sym_comment] = ACTIONS(123), + }, + [237] = { + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_LBRACK] = ACTIONS(815), [sym_comment] = ACTIONS(123), }, [238] = { - [sym__declarator] = STATE(268), - [sym__abstract_declarator] = STATE(269), - [sym_pointer_declarator] = STATE(240), + [sym__declaration_specifiers] = STATE(229), + [sym__declarator] = STATE(271), + [sym__abstract_declarator] = STATE(272), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(815), + [sym_storage_class_specifier] = STATE(14), + [sym_type_qualifier] = STATE(14), + [sym__type_specifier] = STATE(230), + [sym_sized_type_specifier] = STATE(44), + [sym_enum_specifier] = STATE(44), + [sym_struct_specifier] = STATE(44), + [sym_union_specifier] = STATE(44), + [sym_parameter_type_list] = STATE(273), + [sym_parameter_declaration] = STATE(227), + [sym_macro_type_specifier] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(48), + [aux_sym_sized_type_specifier_repeat1] = STATE(49), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(726), - [sym_identifier] = ACTIONS(423), + [anon_sym_static] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(147), + [anon_sym_auto] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), + [anon_sym_const] = ACTIONS(149), + [anon_sym_restrict] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [sym_function_specifier] = ACTIONS(151), + [anon_sym_unsigned] = ACTIONS(153), + [anon_sym_long] = ACTIONS(153), + [anon_sym_short] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_struct] = ACTIONS(157), + [anon_sym_union] = ACTIONS(159), + [sym_identifier] = ACTIONS(819), [sym_comment] = ACTIONS(123), }, [239] = { - [sym__declarator] = STATE(265), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [sym__declarator] = STATE(266), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(726), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, [240] = { - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_EQ] = ACTIONS(817), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(821), + [anon_sym_COMMA] = ACTIONS(821), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(821), + [anon_sym_COLON] = ACTIONS(821), [sym_comment] = ACTIONS(123), }, [241] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(823), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(827), [sym_comment] = ACTIONS(123), }, [242] = { - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(763), [sym_comment] = ACTIONS(123), }, [243] = { + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_COMMA] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(829), + [sym_comment] = ACTIONS(123), + }, + [244] = { [sym__declaration_specifiers] = STATE(229), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), @@ -22155,13 +22305,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_parameter_type_list] = STATE(257), + [sym_parameter_type_list] = STATE(258), [sym_parameter_declaration] = STATE(227), [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_DOT_DOT_DOT] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(831), [anon_sym_extern] = ACTIONS(147), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -22180,9 +22330,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [244] = { + [245] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(247), + [sym__expression] = STATE(248), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -22200,11 +22350,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [aux_sym_array_declarator_repeat1] = STATE(248), + [aux_sym_array_declarator_repeat1] = STATE(249), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(829), + [anon_sym_static] = ACTIONS(833), + [anon_sym_RBRACK] = ACTIONS(835), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22222,9 +22372,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [245] = { + [246] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(251), + [sym__expression] = STATE(252), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -22242,10 +22392,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [aux_sym_array_declarator_repeat1] = STATE(255), + [aux_sym_array_declarator_repeat1] = STATE(256), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_RBRACK] = ACTIONS(837), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22263,23 +22413,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [246] = { - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(833), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_COLON] = ACTIONS(833), + [247] = { + [anon_sym_LPAREN] = ACTIONS(839), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_LBRACK] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_COLON] = ACTIONS(839), [sym_comment] = ACTIONS(123), }, - [247] = { + [248] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_RBRACK] = ACTIONS(837), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -22315,9 +22465,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [248] = { + [249] = { [sym_type_qualifier] = STATE(207), - [sym__expression] = STATE(251), + [sym__expression] = STATE(252), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -22337,8 +22487,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(835), - [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_static] = ACTIONS(841), + [anon_sym_RBRACK] = ACTIONS(837), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22356,8 +22506,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [249] = { - [sym__expression] = STATE(253), + [250] = { + [sym__expression] = STATE(254), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -22391,23 +22541,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [250] = { - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_COMMA] = ACTIONS(837), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(837), - [anon_sym_COLON] = ACTIONS(837), + [251] = { + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(843), [sym_comment] = ACTIONS(123), }, - [251] = { + [252] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(839), + [anon_sym_RBRACK] = ACTIONS(845), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -22443,23 +22593,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [252] = { - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), + [253] = { + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(847), [sym_comment] = ACTIONS(123), }, - [253] = { + [254] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(843), + [anon_sym_RBRACK] = ACTIONS(849), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -22495,20 +22645,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [254] = { - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), + [255] = { + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(851), [sym_comment] = ACTIONS(123), }, - [255] = { + [256] = { [sym_type_qualifier] = STATE(207), - [sym__expression] = STATE(253), + [sym__expression] = STATE(254), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -22528,7 +22678,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(839), + [anon_sym_RBRACK] = ACTIONS(845), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22546,33 +22696,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [256] = { - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_COLON] = ACTIONS(847), - [sym_comment] = ACTIONS(123), - }, [257] = { - [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(853), [sym_comment] = ACTIONS(123), }, [258] = { - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_COLON] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(855), [sym_comment] = ACTIONS(123), }, [259] = { + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(857), + [sym_comment] = ACTIONS(123), + }, + [260] = { [sym_type_qualifier] = STATE(199), [sym__expression] = STATE(218), [sym_conditional_expression] = STATE(34), @@ -22592,10 +22742,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [aux_sym_array_declarator_repeat1] = STATE(264), + [aux_sym_array_declarator_repeat1] = STATE(265), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(771), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22613,19 +22763,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [260] = { - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(853), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), + [261] = { + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(859), [sym_comment] = ACTIONS(123), }, - [261] = { + [262] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(771), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -22661,7 +22811,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [262] = { + [263] = { [sym_type_qualifier] = STATE(207), [sym__expression] = STATE(218), [sym_conditional_expression] = STATE(34), @@ -22683,8 +22833,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(855), - [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_static] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(771), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22702,7 +22852,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [263] = { + [264] = { [sym__expression] = STATE(222), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -22737,7 +22887,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [264] = { + [265] = { [sym_type_qualifier] = STATE(207), [sym__expression] = STATE(222), [sym_conditional_expression] = STATE(34), @@ -22759,7 +22909,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(773), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22777,109 +22927,98 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [265] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_RPAREN] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_COLON] = ACTIONS(857), - [sym_comment] = ACTIONS(123), - }, [266] = { - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(859), - [anon_sym_RPAREN] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(759), - [sym_comment] = ACTIONS(123), - }, - [267] = { - [sym__declarator] = STATE(265), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), - [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), - [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), - [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(726), - [sym_identifier] = ACTIONS(423), - [sym_comment] = ACTIONS(123), - }, - [268] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(823), - [sym_comment] = ACTIONS(123), - }, - [269] = { - [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(863), [anon_sym_RPAREN] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(863), [sym_comment] = ACTIONS(123), }, - [270] = { - [anon_sym_LPAREN] = ACTIONS(865), + [267] = { + [anon_sym_LPAREN] = ACTIONS(759), [anon_sym_COMMA] = ACTIONS(865), [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(763), [sym_comment] = ACTIONS(123), }, - [271] = { + [268] = { [anon_sym_LPAREN] = ACTIONS(867), [anon_sym_COMMA] = ACTIONS(867), [anon_sym_RPAREN] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(867), [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_COLON] = ACTIONS(867), [sym_comment] = ACTIONS(123), }, - [272] = { - [sym__declarator] = STATE(273), - [sym__abstract_declarator] = STATE(274), - [sym_pointer_declarator] = STATE(240), + [269] = { + [sym__declarator] = STATE(266), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(726), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, + [270] = { + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_LBRACK] = ACTIONS(873), + [sym_identifier] = ACTIONS(387), + [sym_comment] = ACTIONS(123), + }, + [271] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(827), + [sym_comment] = ACTIONS(123), + }, + [272] = { + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(763), + [sym_comment] = ACTIONS(123), + }, [273] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(767), [sym_comment] = ACTIONS(123), }, [274] = { - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), [sym_comment] = ACTIONS(123), }, [275] = { + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [sym_comment] = ACTIONS(123), + }, + [276] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_type_name] = STATE(276), + [sym_type_name] = STATE(277), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), [aux_sym_sized_type_specifier_repeat1] = STATE(205), @@ -22895,34 +23034,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [276] = { - [anon_sym_RPAREN] = ACTIONS(871), - [sym_comment] = ACTIONS(123), - }, [277] = { - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_COLON] = ACTIONS(873), - [sym_identifier] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(884), [sym_comment] = ACTIONS(123), }, [278] = { + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_COMMA] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(886), + [anon_sym_COLON] = ACTIONS(886), + [sym_identifier] = ACTIONS(888), + [sym_comment] = ACTIONS(123), + }, + [279] = { + [sym__declarator] = STATE(280), + [sym__abstract_declarator] = STATE(281), + [sym_pointer_declarator] = STATE(243), + [sym_abstract_pointer_declarator] = STATE(213), + [sym_function_declarator] = STATE(243), + [sym_abstract_function_declarator] = STATE(213), + [sym_array_declarator] = STATE(243), + [sym_abstract_array_declarator] = STATE(213), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(726), + [sym_identifier] = ACTIONS(423), + [sym_comment] = ACTIONS(123), + }, + [280] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(827), + [sym_comment] = ACTIONS(123), + }, + [281] = { + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(763), + [sym_comment] = ACTIONS(123), + }, + [282] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(283), + [sym_struct_declaration] = STATE(287), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_struct_specifier_repeat1] = STATE(422), - [anon_sym_RBRACE] = ACTIONS(877), + [aux_sym_struct_specifier_repeat1] = STATE(426), + [anon_sym_RBRACE] = ACTIONS(892), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22935,31 +23105,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [279] = { - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [sym_identifier] = ACTIONS(883), + [283] = { + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_COLON] = ACTIONS(894), + [sym_identifier] = ACTIONS(898), [sym_comment] = ACTIONS(123), }, - [280] = { + [284] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(283), + [sym_struct_declaration] = STATE(287), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_struct_specifier_repeat1] = STATE(285), - [anon_sym_RBRACE] = ACTIONS(885), + [aux_sym_struct_specifier_repeat1] = STATE(289), + [anon_sym_RBRACE] = ACTIONS(900), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -22972,46 +23142,46 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [281] = { - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_COMMA] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_COLON] = ACTIONS(887), - [sym_identifier] = ACTIONS(889), + [285] = { + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_COLON] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), [sym_comment] = ACTIONS(123), }, - [282] = { - [sym__declarator] = STATE(418), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [286] = { + [sym__declarator] = STATE(422), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_COLON] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_COLON] = ACTIONS(910), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [283] = { - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_const] = ACTIONS(899), - [anon_sym_restrict] = ACTIONS(899), - [anon_sym_volatile] = ACTIONS(899), - [anon_sym_unsigned] = ACTIONS(899), - [anon_sym_long] = ACTIONS(899), - [anon_sym_short] = ACTIONS(899), - [anon_sym_enum] = ACTIONS(899), - [anon_sym_struct] = ACTIONS(899), - [anon_sym_union] = ACTIONS(899), - [sym_identifier] = ACTIONS(901), + [287] = { + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_const] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [sym_identifier] = ACTIONS(916), [sym_comment] = ACTIONS(123), }, - [284] = { + [288] = { [sym_type_qualifier] = STATE(207), - [sym__type_specifier] = STATE(288), + [sym__type_specifier] = STATE(292), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -23030,18 +23200,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [285] = { + [289] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(287), + [sym_struct_declaration] = STATE(291), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(918), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -23054,79 +23224,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [286] = { - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_COLON] = ACTIONS(905), - [sym_identifier] = ACTIONS(907), + [290] = { + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_COLON] = ACTIONS(920), + [sym_identifier] = ACTIONS(922), [sym_comment] = ACTIONS(123), }, - [287] = { - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_const] = ACTIONS(911), - [anon_sym_restrict] = ACTIONS(911), - [anon_sym_volatile] = ACTIONS(911), - [anon_sym_unsigned] = ACTIONS(911), - [anon_sym_long] = ACTIONS(911), - [anon_sym_short] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [sym_identifier] = ACTIONS(913), + [291] = { + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_const] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_unsigned] = ACTIONS(926), + [anon_sym_long] = ACTIONS(926), + [anon_sym_short] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [sym_identifier] = ACTIONS(928), [sym_comment] = ACTIONS(123), }, - [288] = { - [sym__declarator] = STATE(293), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [292] = { + [sym__declarator] = STATE(297), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_COLON] = ACTIONS(932), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [289] = { - [sym__declarator] = STATE(268), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [293] = { + [sym__declarator] = STATE(271), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(934), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [290] = { - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_const] = ACTIONS(923), - [anon_sym_restrict] = ACTIONS(923), - [anon_sym_volatile] = ACTIONS(923), - [anon_sym_unsigned] = ACTIONS(923), - [anon_sym_long] = ACTIONS(923), - [anon_sym_short] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [sym_identifier] = ACTIONS(925), + [294] = { + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_const] = ACTIONS(938), + [anon_sym_restrict] = ACTIONS(938), + [anon_sym_volatile] = ACTIONS(938), + [anon_sym_unsigned] = ACTIONS(938), + [anon_sym_long] = ACTIONS(938), + [anon_sym_short] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [sym_identifier] = ACTIONS(940), [sym_comment] = ACTIONS(123), }, - [291] = { - [sym__declarator] = STATE(265), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [295] = { + [sym__declarator] = STATE(266), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(908), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [292] = { - [sym__expression] = STATE(414), + [296] = { + [sym__expression] = STATE(418), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23160,41 +23330,41 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [293] = { - [aux_sym_struct_declaration_repeat1] = STATE(297), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(931), + [297] = { + [aux_sym_struct_declaration_repeat1] = STATE(301), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_COLON] = ACTIONS(946), [sym_comment] = ACTIONS(123), }, - [294] = { - [sym__declarator] = STATE(413), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [298] = { + [sym__declarator] = STATE(417), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(908), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [295] = { - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_const] = ACTIONS(935), - [anon_sym_restrict] = ACTIONS(935), - [anon_sym_volatile] = ACTIONS(935), - [anon_sym_unsigned] = ACTIONS(935), - [anon_sym_long] = ACTIONS(935), - [anon_sym_short] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), + [299] = { + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_const] = ACTIONS(950), + [anon_sym_restrict] = ACTIONS(950), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_unsigned] = ACTIONS(950), + [anon_sym_long] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_union] = ACTIONS(950), + [sym_identifier] = ACTIONS(952), [sym_comment] = ACTIONS(123), }, - [296] = { - [sym__expression] = STATE(411), + [300] = { + [sym__expression] = STATE(415), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23228,38 +23398,38 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [297] = { - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(943), + [301] = { + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(958), [sym_comment] = ACTIONS(123), }, - [298] = { - [sym__declarator] = STATE(410), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [302] = { + [sym__declarator] = STATE(414), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(908), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [299] = { - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_const] = ACTIONS(947), - [anon_sym_restrict] = ACTIONS(947), - [anon_sym_volatile] = ACTIONS(947), - [anon_sym_unsigned] = ACTIONS(947), - [anon_sym_long] = ACTIONS(947), - [anon_sym_short] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), + [303] = { + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_const] = ACTIONS(962), + [anon_sym_restrict] = ACTIONS(962), + [anon_sym_volatile] = ACTIONS(962), + [anon_sym_unsigned] = ACTIONS(962), + [anon_sym_long] = ACTIONS(962), + [anon_sym_short] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_union] = ACTIONS(962), + [sym_identifier] = ACTIONS(964), [sym_comment] = ACTIONS(123), }, - [300] = { - [sym__expression] = STATE(307), + [304] = { + [sym__expression] = STATE(311), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23293,7 +23463,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [301] = { + [305] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -23318,7 +23488,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(408), + [sym_type_name] = STATE(412), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -23348,8 +23518,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [302] = { - [sym__expression] = STATE(403), + [306] = { + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23383,8 +23553,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [303] = { - [sym__expression] = STATE(402), + [307] = { + [sym__expression] = STATE(406), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23418,8 +23588,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [304] = { - [sym__expression] = STATE(401), + [308] = { + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23453,8 +23623,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [305] = { - [sym__expression] = STATE(400), + [309] = { + [sym__expression] = STATE(404), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23488,8 +23658,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [306] = { - [sym__expression] = STATE(335), + [310] = { + [sym__expression] = STATE(339), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23507,7 +23677,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(966), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -23523,62 +23693,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [307] = { + [311] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [308] = { - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_const] = ACTIONS(985), - [anon_sym_restrict] = ACTIONS(985), - [anon_sym_volatile] = ACTIONS(985), - [anon_sym_unsigned] = ACTIONS(985), - [anon_sym_long] = ACTIONS(985), - [anon_sym_short] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [sym_identifier] = ACTIONS(987), + [312] = { + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [sym_identifier] = ACTIONS(1002), [sym_comment] = ACTIONS(123), }, - [309] = { + [313] = { [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -23613,8 +23783,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [310] = { - [sym__expression] = STATE(330), + [314] = { + [sym__expression] = STATE(334), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23648,8 +23818,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [311] = { - [sym__expression] = STATE(331), + [315] = { + [sym__expression] = STATE(335), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -23683,7 +23853,147 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [312] = { + [316] = { + [sym__expression] = STATE(333), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_sizeof] = ACTIONS(355), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [317] = { + [sym__expression] = STATE(332), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_sizeof] = ACTIONS(355), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [318] = { + [sym__expression] = STATE(331), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_sizeof] = ACTIONS(355), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [319] = { + [sym__expression] = STATE(330), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(347), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_sizeof] = ACTIONS(355), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [320] = { [sym__expression] = STATE(329), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -23718,7 +24028,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [313] = { + [321] = { [sym__expression] = STATE(328), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -23753,7 +24063,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [314] = { + [322] = { [sym__expression] = STATE(327), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -23788,7 +24098,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [315] = { + [323] = { [sym__expression] = STATE(326), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -23823,7 +24133,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [316] = { + [324] = { [sym__expression] = STATE(325), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -23858,151 +24168,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [317] = { - [sym__expression] = STATE(324), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(351), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_PLUS_PLUS] = ACTIONS(353), - [anon_sym_sizeof] = ACTIONS(355), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), - [sym_comment] = ACTIONS(123), - }, - [318] = { - [sym__expression] = STATE(323), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(351), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_PLUS_PLUS] = ACTIONS(353), - [anon_sym_sizeof] = ACTIONS(355), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), - [sym_comment] = ACTIONS(123), - }, - [319] = { - [sym__expression] = STATE(322), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(351), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_PLUS_PLUS] = ACTIONS(353), - [anon_sym_sizeof] = ACTIONS(355), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), - [sym_comment] = ACTIONS(123), - }, - [320] = { - [sym__expression] = STATE(321), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(351), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_PLUS_PLUS] = ACTIONS(353), - [anon_sym_sizeof] = ACTIONS(355), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), - [sym_comment] = ACTIONS(123), - }, - [321] = { + [325] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(542), [anon_sym_QMARK] = ACTIONS(540), @@ -24031,19 +24201,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(542), [anon_sym_PLUS] = ACTIONS(542), [anon_sym_DASH] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [322] = { + [326] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(546), [anon_sym_QMARK] = ACTIONS(544), @@ -24070,21 +24240,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(544), [anon_sym_LT_LT] = ACTIONS(546), [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [323] = { + [327] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(550), [anon_sym_QMARK] = ACTIONS(548), @@ -24109,23 +24279,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(550), [anon_sym_LT_EQ] = ACTIONS(548), [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [324] = { + [328] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(554), [anon_sym_QMARK] = ACTIONS(552), @@ -24146,27 +24316,27 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(554), [anon_sym_EQ_EQ] = ACTIONS(552), [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [325] = { + [329] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -24180,34 +24350,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(978), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [326] = { + [330] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -24221,34 +24391,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(978), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [327] = { + [331] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), @@ -24262,34 +24432,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(978), [anon_sym_PIPE_PIPE] = ACTIONS(560), [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [328] = { + [332] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), @@ -24303,34 +24473,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(978), [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [329] = { + [333] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -24349,72 +24519,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [330] = { + [334] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(972), [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [331] = { + [335] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(989), + [anon_sym_COLON] = ACTIONS(1004), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -24449,8 +24619,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [332] = { - [sym__expression] = STATE(333), + [336] = { + [sym__expression] = STATE(337), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -24484,48 +24654,48 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [333] = { + [337] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [334] = { + [338] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -24550,7 +24720,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(336), + [sym_type_name] = STATE(340), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -24580,11 +24750,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [335] = { + [339] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(712), [anon_sym_QMARK] = ACTIONS(710), @@ -24609,24 +24779,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(712), [anon_sym_LT_EQ] = ACTIONS(710), [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [336] = { - [anon_sym_RPAREN] = ACTIONS(991), + [340] = { + [anon_sym_RPAREN] = ACTIONS(1006), [sym_comment] = ACTIONS(123), }, - [337] = { - [sym__expression] = STATE(339), + [341] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -24643,57 +24813,57 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_TILDE] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), [anon_sym_PLUS] = ACTIONS(351), [anon_sym_DASH] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), [anon_sym_DASH_DASH] = ACTIONS(353), [anon_sym_PLUS_PLUS] = ACTIONS(353), [anon_sym_sizeof] = ACTIONS(355), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [338] = { - [sym__expression] = STATE(350), + [342] = { + [sym__expression] = STATE(354), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -24710,123 +24880,123 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(351), - [sym__initializer_list_contents] = STATE(352), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(355), + [sym__initializer_list_contents] = STATE(356), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), - [aux_sym__initializer_list_contents_repeat1] = STATE(354), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1021), + [aux_sym__initializer_list_contents_repeat1] = STATE(358), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1036), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [339] = { + [343] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1040), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1025), + [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_STAR_EQ] = ACTIONS(1038), + [anon_sym_SLASH_EQ] = ACTIONS(1038), + [anon_sym_PERCENT_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1038), + [anon_sym_DASH_EQ] = ACTIONS(1038), + [anon_sym_LT_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_GT_EQ] = ACTIONS(1038), + [anon_sym_AMP_EQ] = ACTIONS(1038), + [anon_sym_CARET_EQ] = ACTIONS(1038), + [anon_sym_PIPE_EQ] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_AMP_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_CARET] = ACTIONS(1040), + [anon_sym_EQ_EQ] = ACTIONS(1038), + [anon_sym_BANG_EQ] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_EQ] = ACTIONS(1038), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_SLASH] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1040), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [340] = { - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1029), - [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(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DASH_GT] = ACTIONS(1027), + [344] = { + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PERCENT_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_LT_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_GT_EQ] = ACTIONS(1042), + [anon_sym_AMP_EQ] = ACTIONS(1042), + [anon_sym_CARET_EQ] = ACTIONS(1042), + [anon_sym_PIPE_EQ] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DASH_GT] = ACTIONS(1042), [sym_comment] = ACTIONS(123), }, - [341] = { + [345] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -24851,7 +25021,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(406), + [sym_type_name] = STATE(410), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -24881,53 +25051,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [342] = { - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1033), - [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(1031), - [anon_sym_DASH_GT] = ACTIONS(1031), + [346] = { + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(1046), [sym_comment] = ACTIONS(123), }, - [343] = { - [sym__expression] = STATE(403), + [347] = { + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -24945,24 +25115,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [344] = { - [sym__expression] = STATE(404), + [348] = { + [sym__expression] = STATE(408), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -24996,8 +25166,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [345] = { - [sym__expression] = STATE(402), + [349] = { + [sym__expression] = STATE(406), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25015,24 +25185,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [346] = { - [sym__expression] = STATE(401), + [350] = { + [sym__expression] = STATE(405), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25050,24 +25220,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [347] = { - [sym__expression] = STATE(400), + [351] = { + [sym__expression] = STATE(404), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25085,24 +25255,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [348] = { - [sym__expression] = STATE(393), + [352] = { + [sym__expression] = STATE(397), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25120,93 +25290,93 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [349] = { - [sym_identifier] = ACTIONS(1037), + [353] = { + [sym_identifier] = ACTIONS(1052), [sym_comment] = ACTIONS(123), }, - [350] = { + [354] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [351] = { - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), + [355] = { + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), [sym_comment] = ACTIONS(123), }, - [352] = { - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1071), + [356] = { + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1086), [sym_comment] = ACTIONS(123), }, - [353] = { - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_EQ] = ACTIONS(1073), - [anon_sym_DOT] = ACTIONS(1073), + [357] = { + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), [sym_comment] = ACTIONS(123), }, - [354] = { - [sym_designator] = STATE(356), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1021), + [358] = { + [sym_designator] = STATE(360), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1036), [sym_comment] = ACTIONS(123), }, - [355] = { - [sym__expression] = STATE(357), + [359] = { + [sym__expression] = STATE(361), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25223,79 +25393,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(358), + [sym_initializer_list] = STATE(362), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [356] = { - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_EQ] = ACTIONS(1077), - [anon_sym_DOT] = ACTIONS(1077), + [360] = { + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_DOT] = ACTIONS(1092), [sym_comment] = ACTIONS(123), }, - [357] = { + [361] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [358] = { - [anon_sym_COMMA] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), + [362] = { + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), [sym_comment] = ACTIONS(123), }, - [359] = { + [363] = { [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -25314,24 +25484,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [360] = { - [sym__expression] = STATE(380), + [364] = { + [sym__expression] = STATE(384), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25349,24 +25519,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [361] = { - [sym__expression] = STATE(381), + [365] = { + [sym__expression] = STATE(385), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25400,8 +25570,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [362] = { - [sym__expression] = STATE(379), + [366] = { + [sym__expression] = STATE(383), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25419,24 +25589,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [363] = { - [sym__expression] = STATE(378), + [367] = { + [sym__expression] = STATE(382), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25454,24 +25624,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [364] = { - [sym__expression] = STATE(377), + [368] = { + [sym__expression] = STATE(381), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25489,24 +25659,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [365] = { - [sym__expression] = STATE(376), + [369] = { + [sym__expression] = STATE(380), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25524,24 +25694,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [366] = { - [sym__expression] = STATE(375), + [370] = { + [sym__expression] = STATE(379), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25559,24 +25729,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [367] = { - [sym__expression] = STATE(374), + [371] = { + [sym__expression] = STATE(378), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25594,24 +25764,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [368] = { - [sym__expression] = STATE(373), + [372] = { + [sym__expression] = STATE(377), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25629,24 +25799,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [369] = { - [sym__expression] = STATE(372), + [373] = { + [sym__expression] = STATE(376), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25664,24 +25834,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [370] = { - [sym__expression] = STATE(371), + [374] = { + [sym__expression] = STATE(375), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -25699,28 +25869,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [371] = { + [375] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(540), [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(542), [anon_sym_QMARK] = ACTIONS(540), @@ -25749,20 +25919,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(542), [anon_sym_PLUS] = ACTIONS(542), [anon_sym_DASH] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [372] = { + [376] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(544), [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(546), [anon_sym_QMARK] = ACTIONS(544), @@ -25789,22 +25959,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(544), [anon_sym_LT_LT] = ACTIONS(546), [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [373] = { + [377] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(548), [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(550), [anon_sym_QMARK] = ACTIONS(548), @@ -25829,24 +25999,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(550), [anon_sym_LT_EQ] = ACTIONS(548), [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [374] = { + [378] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(552), [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(554), [anon_sym_QMARK] = ACTIONS(552), @@ -25867,28 +26037,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(554), [anon_sym_EQ_EQ] = ACTIONS(552), [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [375] = { + [379] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(556), [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -25902,35 +26072,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1064), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [376] = { + [380] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(556), [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -25944,35 +26114,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1064), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [377] = { + [381] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(560), [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), @@ -25986,35 +26156,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1064), [anon_sym_PIPE_PIPE] = ACTIONS(560), [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [378] = { + [382] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(560), [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), @@ -26028,35 +26198,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1064), [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [379] = { + [383] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(556), [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -26075,73 +26245,73 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [380] = { + [384] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(564), [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [381] = { + [385] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1081), + [anon_sym_COLON] = ACTIONS(1096), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -26176,8 +26346,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [382] = { - [sym__expression] = STATE(383), + [386] = { + [sym__expression] = STATE(387), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -26195,66 +26365,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [383] = { + [387] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(600), [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [384] = { - [sym__expression] = STATE(357), + [388] = { + [sym__expression] = STATE(361), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -26271,129 +26441,129 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(358), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(362), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), - [aux_sym__initializer_list_contents_repeat1] = STATE(387), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1021), + [aux_sym__initializer_list_contents_repeat1] = STATE(391), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1036), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [385] = { - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(1085), - [anon_sym_EQ] = ACTIONS(1087), - [anon_sym_COLON] = ACTIONS(1085), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_STAR_EQ] = ACTIONS(1085), - [anon_sym_SLASH_EQ] = ACTIONS(1085), - [anon_sym_PERCENT_EQ] = ACTIONS(1085), - [anon_sym_PLUS_EQ] = ACTIONS(1085), - [anon_sym_DASH_EQ] = ACTIONS(1085), - [anon_sym_LT_LT_EQ] = ACTIONS(1085), - [anon_sym_GT_GT_EQ] = ACTIONS(1085), - [anon_sym_AMP_EQ] = ACTIONS(1085), - [anon_sym_CARET_EQ] = ACTIONS(1085), - [anon_sym_PIPE_EQ] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1087), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_PERCENT] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_DASH_GT] = ACTIONS(1085), + [389] = { + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_COMMA] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_COLON] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_STAR_EQ] = ACTIONS(1100), + [anon_sym_SLASH_EQ] = ACTIONS(1100), + [anon_sym_PERCENT_EQ] = ACTIONS(1100), + [anon_sym_PLUS_EQ] = ACTIONS(1100), + [anon_sym_DASH_EQ] = ACTIONS(1100), + [anon_sym_LT_LT_EQ] = ACTIONS(1100), + [anon_sym_GT_GT_EQ] = ACTIONS(1100), + [anon_sym_AMP_EQ] = ACTIONS(1100), + [anon_sym_CARET_EQ] = ACTIONS(1100), + [anon_sym_PIPE_EQ] = ACTIONS(1100), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1100), + [anon_sym_AMP_AMP] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_LT_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_DASH_GT] = ACTIONS(1100), [sym_comment] = ACTIONS(123), }, - [386] = { - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(1089), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1089), - [anon_sym_EQ] = ACTIONS(1091), - [anon_sym_COLON] = ACTIONS(1089), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_STAR_EQ] = ACTIONS(1089), - [anon_sym_SLASH_EQ] = ACTIONS(1089), - [anon_sym_PERCENT_EQ] = ACTIONS(1089), - [anon_sym_PLUS_EQ] = ACTIONS(1089), - [anon_sym_DASH_EQ] = ACTIONS(1089), - [anon_sym_LT_LT_EQ] = ACTIONS(1089), - [anon_sym_GT_GT_EQ] = ACTIONS(1089), - [anon_sym_AMP_EQ] = ACTIONS(1089), - [anon_sym_CARET_EQ] = ACTIONS(1089), - [anon_sym_PIPE_EQ] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_EQ_EQ] = ACTIONS(1089), - [anon_sym_BANG_EQ] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_SLASH] = ACTIONS(1091), - [anon_sym_PERCENT] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_DASH_GT] = ACTIONS(1089), + [390] = { + [anon_sym_LPAREN] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_RBRACK] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1104), + [anon_sym_SLASH_EQ] = ACTIONS(1104), + [anon_sym_PERCENT_EQ] = ACTIONS(1104), + [anon_sym_PLUS_EQ] = ACTIONS(1104), + [anon_sym_DASH_EQ] = ACTIONS(1104), + [anon_sym_LT_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_GT_EQ] = ACTIONS(1104), + [anon_sym_AMP_EQ] = ACTIONS(1104), + [anon_sym_CARET_EQ] = ACTIONS(1104), + [anon_sym_PIPE_EQ] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1104), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_EQ_EQ] = ACTIONS(1104), + [anon_sym_BANG_EQ] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DASH_GT] = ACTIONS(1104), [sym_comment] = ACTIONS(123), }, - [387] = { - [sym_designator] = STATE(356), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_DOT] = ACTIONS(1021), + [391] = { + [sym_designator] = STATE(360), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1036), [sym_comment] = ACTIONS(123), }, - [388] = { - [sym__expression] = STATE(389), + [392] = { + [sym__expression] = STATE(393), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -26410,79 +26580,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(390), + [sym_initializer_list] = STATE(394), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [389] = { + [393] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [390] = { - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), + [394] = { + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), [sym_comment] = ACTIONS(123), }, - [391] = { - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1097), - [anon_sym_DOT] = ACTIONS(1097), + [395] = { + [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), [sym_comment] = ACTIONS(123), }, - [392] = { + [396] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -26507,7 +26677,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(394), + [sym_type_name] = STATE(398), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -26537,12 +26707,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [393] = { + [397] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(710), [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(712), [anon_sym_QMARK] = ACTIONS(710), @@ -26567,24 +26737,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(712), [anon_sym_LT_EQ] = ACTIONS(710), [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [394] = { - [anon_sym_RPAREN] = ACTIONS(1099), + [398] = { + [anon_sym_RPAREN] = ACTIONS(1114), [sym_comment] = ACTIONS(123), }, - [395] = { - [sym__expression] = STATE(339), + [399] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -26601,104 +26771,104 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [396] = { - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DASH_GT] = ACTIONS(1105), + [400] = { + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1122), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_STAR_EQ] = ACTIONS(1120), + [anon_sym_SLASH_EQ] = ACTIONS(1120), + [anon_sym_PERCENT_EQ] = ACTIONS(1120), + [anon_sym_PLUS_EQ] = ACTIONS(1120), + [anon_sym_DASH_EQ] = ACTIONS(1120), + [anon_sym_LT_LT_EQ] = ACTIONS(1120), + [anon_sym_GT_GT_EQ] = ACTIONS(1120), + [anon_sym_AMP_EQ] = ACTIONS(1120), + [anon_sym_CARET_EQ] = ACTIONS(1120), + [anon_sym_PIPE_EQ] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_CARET] = ACTIONS(1122), + [anon_sym_EQ_EQ] = ACTIONS(1120), + [anon_sym_BANG_EQ] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_LT_EQ] = ACTIONS(1120), + [anon_sym_GT_EQ] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_PERCENT] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_DASH_GT] = ACTIONS(1120), [sym_comment] = ACTIONS(123), }, - [397] = { - [sym__expression] = STATE(398), - [sym_comma_expression] = STATE(399), + [401] = { + [sym__expression] = STATE(402), + [sym_comma_expression] = STATE(403), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -26732,11 +26902,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [398] = { + [402] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_RPAREN] = ACTIONS(1124), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -26774,201 +26944,201 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [399] = { - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), + [403] = { + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), [sym_comment] = ACTIONS(123), }, - [400] = { + [404] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(1111), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_COLON] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1111), - [anon_sym_STAR_EQ] = ACTIONS(1111), - [anon_sym_SLASH_EQ] = ACTIONS(1111), - [anon_sym_PERCENT_EQ] = ACTIONS(1111), - [anon_sym_PLUS_EQ] = ACTIONS(1111), - [anon_sym_DASH_EQ] = ACTIONS(1111), - [anon_sym_LT_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_GT_EQ] = ACTIONS(1111), - [anon_sym_AMP_EQ] = ACTIONS(1111), - [anon_sym_CARET_EQ] = ACTIONS(1111), - [anon_sym_PIPE_EQ] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1113), - [anon_sym_GT_GT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_PERCENT] = ACTIONS(1113), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1128), + [anon_sym_COLON] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(1126), + [anon_sym_STAR_EQ] = ACTIONS(1126), + [anon_sym_SLASH_EQ] = ACTIONS(1126), + [anon_sym_PERCENT_EQ] = ACTIONS(1126), + [anon_sym_PLUS_EQ] = ACTIONS(1126), + [anon_sym_DASH_EQ] = ACTIONS(1126), + [anon_sym_LT_LT_EQ] = ACTIONS(1126), + [anon_sym_GT_GT_EQ] = ACTIONS(1126), + [anon_sym_AMP_EQ] = ACTIONS(1126), + [anon_sym_CARET_EQ] = ACTIONS(1126), + [anon_sym_PIPE_EQ] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(1126), + [anon_sym_BANG_EQ] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1128), + [anon_sym_LT_EQ] = ACTIONS(1126), + [anon_sym_GT_EQ] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1128), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_PERCENT] = ACTIONS(1128), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [401] = { + [405] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_EQ] = ACTIONS(1117), - [anon_sym_COLON] = ACTIONS(1115), - [anon_sym_QMARK] = ACTIONS(1115), - [anon_sym_STAR_EQ] = ACTIONS(1115), - [anon_sym_SLASH_EQ] = ACTIONS(1115), - [anon_sym_PERCENT_EQ] = ACTIONS(1115), - [anon_sym_PLUS_EQ] = ACTIONS(1115), - [anon_sym_DASH_EQ] = ACTIONS(1115), - [anon_sym_LT_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_GT_EQ] = ACTIONS(1115), - [anon_sym_AMP_EQ] = ACTIONS(1115), - [anon_sym_CARET_EQ] = ACTIONS(1115), - [anon_sym_PIPE_EQ] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_PIPE_PIPE] = ACTIONS(1115), - [anon_sym_AMP_AMP] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_GT_GT] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [402] = { + [406] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_STAR_EQ] = ACTIONS(1119), - [anon_sym_SLASH_EQ] = ACTIONS(1119), - [anon_sym_PERCENT_EQ] = ACTIONS(1119), - [anon_sym_PLUS_EQ] = ACTIONS(1119), - [anon_sym_DASH_EQ] = ACTIONS(1119), - [anon_sym_LT_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_GT_EQ] = ACTIONS(1119), - [anon_sym_AMP_EQ] = ACTIONS(1119), - [anon_sym_CARET_EQ] = ACTIONS(1119), - [anon_sym_PIPE_EQ] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1119), - [anon_sym_AMP_AMP] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_LT_LT] = ACTIONS(1121), - [anon_sym_GT_GT] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_RBRACK] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1136), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_QMARK] = ACTIONS(1134), + [anon_sym_STAR_EQ] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1134), + [anon_sym_PERCENT_EQ] = ACTIONS(1134), + [anon_sym_PLUS_EQ] = ACTIONS(1134), + [anon_sym_DASH_EQ] = ACTIONS(1134), + [anon_sym_LT_LT_EQ] = ACTIONS(1134), + [anon_sym_GT_GT_EQ] = ACTIONS(1134), + [anon_sym_AMP_EQ] = ACTIONS(1134), + [anon_sym_CARET_EQ] = ACTIONS(1134), + [anon_sym_PIPE_EQ] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1136), + [anon_sym_EQ_EQ] = ACTIONS(1134), + [anon_sym_BANG_EQ] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1136), + [anon_sym_LT_EQ] = ACTIONS(1134), + [anon_sym_GT_EQ] = ACTIONS(1134), + [anon_sym_LT_LT] = ACTIONS(1136), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [403] = { + [407] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_COMMA] = ACTIONS(1123), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1125), - [anon_sym_COLON] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_LT_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_GT_EQ] = ACTIONS(1123), - [anon_sym_AMP_EQ] = ACTIONS(1123), - [anon_sym_CARET_EQ] = ACTIONS(1123), - [anon_sym_PIPE_EQ] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1125), - [anon_sym_EQ_EQ] = ACTIONS(1123), - [anon_sym_BANG_EQ] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_LT_LT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(1125), - [anon_sym_PERCENT] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), + [anon_sym_RBRACK] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1140), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_QMARK] = ACTIONS(1138), + [anon_sym_STAR_EQ] = ACTIONS(1138), + [anon_sym_SLASH_EQ] = ACTIONS(1138), + [anon_sym_PERCENT_EQ] = ACTIONS(1138), + [anon_sym_PLUS_EQ] = ACTIONS(1138), + [anon_sym_DASH_EQ] = ACTIONS(1138), + [anon_sym_LT_LT_EQ] = ACTIONS(1138), + [anon_sym_GT_GT_EQ] = ACTIONS(1138), + [anon_sym_AMP_EQ] = ACTIONS(1138), + [anon_sym_CARET_EQ] = ACTIONS(1138), + [anon_sym_PIPE_EQ] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_EQ_EQ] = ACTIONS(1138), + [anon_sym_BANG_EQ] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_LT_EQ] = ACTIONS(1138), + [anon_sym_GT_EQ] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_SLASH] = ACTIONS(1140), + [anon_sym_PERCENT] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [404] = { + [408] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(1127), + [anon_sym_RBRACK] = ACTIONS(1142), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -27004,18 +27174,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [405] = { - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1129), + [409] = { + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_DOT] = ACTIONS(1144), [sym_comment] = ACTIONS(123), }, - [406] = { - [anon_sym_RPAREN] = ACTIONS(1131), + [410] = { + [anon_sym_RPAREN] = ACTIONS(1146), [sym_comment] = ACTIONS(123), }, - [407] = { - [sym__expression] = STATE(339), + [411] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27032,31 +27202,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [408] = { - [anon_sym_RPAREN] = ACTIONS(1133), + [412] = { + [anon_sym_RPAREN] = ACTIONS(1148), [sym_comment] = ACTIONS(123), }, - [409] = { - [sym__expression] = STATE(339), + [413] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27073,10 +27243,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -27092,144 +27262,144 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [410] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(1135), + [414] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_COLON] = ACTIONS(1150), [sym_comment] = ACTIONS(123), }, - [411] = { + [415] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [412] = { - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_restrict] = ACTIONS(1141), - [anon_sym_volatile] = ACTIONS(1141), - [anon_sym_unsigned] = ACTIONS(1141), - [anon_sym_long] = ACTIONS(1141), - [anon_sym_short] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [anon_sym_struct] = ACTIONS(1141), - [anon_sym_union] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1143), + [416] = { + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_restrict] = ACTIONS(1156), + [anon_sym_volatile] = ACTIONS(1156), + [anon_sym_unsigned] = ACTIONS(1156), + [anon_sym_long] = ACTIONS(1156), + [anon_sym_short] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_struct] = ACTIONS(1156), + [anon_sym_union] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1158), [sym_comment] = ACTIONS(123), }, - [413] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(1145), + [417] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_COLON] = ACTIONS(1160), [sym_comment] = ACTIONS(123), }, - [414] = { + [418] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [415] = { - [sym__declarator] = STATE(265), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [419] = { + [sym__declarator] = STATE(266), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(934), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [416] = { - [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_restrict] = ACTIONS(1149), - [anon_sym_volatile] = ACTIONS(1149), - [anon_sym_unsigned] = ACTIONS(1149), - [anon_sym_long] = ACTIONS(1149), - [anon_sym_short] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [anon_sym_struct] = ACTIONS(1149), - [anon_sym_union] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), + [420] = { + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1164), + [anon_sym_restrict] = ACTIONS(1164), + [anon_sym_volatile] = ACTIONS(1164), + [anon_sym_unsigned] = ACTIONS(1164), + [anon_sym_long] = ACTIONS(1164), + [anon_sym_short] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), [sym_comment] = ACTIONS(123), }, - [417] = { - [sym__expression] = STATE(420), + [421] = { + [sym__expression] = STATE(424), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27263,85 +27433,85 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [418] = { - [aux_sym_struct_declaration_repeat1] = STATE(419), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_COLON] = ACTIONS(917), + [422] = { + [aux_sym_struct_declaration_repeat1] = STATE(423), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_COLON] = ACTIONS(932), [sym_comment] = ACTIONS(123), }, - [419] = { - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_COLON] = ACTIONS(931), + [423] = { + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_COLON] = ACTIONS(946), [sym_comment] = ACTIONS(123), }, - [420] = { + [424] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [421] = { - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_COLON] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), + [425] = { + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_COMMA] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_COLON] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), [sym_comment] = ACTIONS(123), }, - [422] = { + [426] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(287), + [sym_struct_declaration] = STATE(291), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(900), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -27354,19 +27524,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [423] = { + [427] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(283), + [sym_struct_declaration] = STATE(287), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_struct_specifier_repeat1] = STATE(430), - [anon_sym_RBRACE] = ACTIONS(1157), + [aux_sym_struct_specifier_repeat1] = STATE(434), + [anon_sym_RBRACE] = ACTIONS(1172), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -27379,31 +27549,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [424] = { - [anon_sym_LPAREN] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1163), + [428] = { + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_RPAREN] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_COLON] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1178), [sym_comment] = ACTIONS(123), }, - [425] = { + [429] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(283), + [sym_struct_declaration] = STATE(287), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_struct_specifier_repeat1] = STATE(427), - [anon_sym_RBRACE] = ACTIONS(1165), + [aux_sym_struct_specifier_repeat1] = STATE(431), + [anon_sym_RBRACE] = ACTIONS(1180), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -27416,29 +27586,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [426] = { - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1167), - [anon_sym_RPAREN] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_COLON] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), + [430] = { + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_RPAREN] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_COLON] = ACTIONS(1182), + [sym_identifier] = ACTIONS(1184), [sym_comment] = ACTIONS(123), }, - [427] = { + [431] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(287), + [sym_struct_declaration] = STATE(291), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1186), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -27451,40 +27621,40 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [428] = { - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1173), - [anon_sym_COLON] = ACTIONS(1173), - [sym_identifier] = ACTIONS(1175), + [432] = { + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_COLON] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), [sym_comment] = ACTIONS(123), }, - [429] = { - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COLON] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), + [433] = { + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_COLON] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), [sym_comment] = ACTIONS(123), }, - [430] = { + [434] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(287), + [sym_struct_declaration] = STATE(291), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1180), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -27497,81 +27667,81 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [431] = { - [sym__enum_specifier_contents] = STATE(443), - [sym_enumerator] = STATE(436), - [sym_identifier] = ACTIONS(1181), - [sym_comment] = ACTIONS(123), - }, - [432] = { - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1183), - [anon_sym_COLON] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(123), - }, - [433] = { - [sym__enum_specifier_contents] = STATE(435), - [sym_enumerator] = STATE(436), - [sym_identifier] = ACTIONS(1181), - [sym_comment] = ACTIONS(123), - }, - [434] = { - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1191), - [sym_comment] = ACTIONS(123), - }, [435] = { - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1195), + [sym__enum_specifier_contents] = STATE(447), + [sym_enumerator] = STATE(440), + [sym_identifier] = ACTIONS(1196), [sym_comment] = ACTIONS(123), }, [436] = { - [anon_sym_COMMA] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_COLON] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1202), [sym_comment] = ACTIONS(123), }, [437] = { + [sym__enum_specifier_contents] = STATE(439), [sym_enumerator] = STATE(440), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1196), [sym_comment] = ACTIONS(123), }, [438] = { - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_COLON] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(1206), [sym_comment] = ACTIONS(123), }, [439] = { - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_COLON] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1210), [sym_comment] = ACTIONS(123), }, [440] = { - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), [sym_comment] = ACTIONS(123), }, [441] = { - [sym__expression] = STATE(442), + [sym_enumerator] = STATE(444), + [anon_sym_RBRACE] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1196), + [sym_comment] = ACTIONS(123), + }, + [442] = { + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_COLON] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [sym_comment] = ACTIONS(123), + }, + [443] = { + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_COLON] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [sym_comment] = ACTIONS(123), + }, + [444] = { + [anon_sym_COMMA] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [sym_comment] = ACTIONS(123), + }, + [445] = { + [sym__expression] = STATE(446), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27589,88 +27759,88 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [442] = { + [446] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [443] = { - [anon_sym_COMMA] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1215), + [447] = { + [anon_sym_COMMA] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1230), [sym_comment] = ACTIONS(123), }, - [444] = { - [sym_enumerator] = STATE(440), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1181), + [448] = { + [sym_enumerator] = STATE(444), + [anon_sym_RBRACE] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1196), [sym_comment] = ACTIONS(123), }, - [445] = { - [anon_sym_LPAREN] = ACTIONS(1217), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_COLON] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), + [449] = { + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), [sym_comment] = ACTIONS(123), }, - [446] = { - [sym__expression] = STATE(339), + [450] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27687,68 +27857,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), [anon_sym_PLUS] = ACTIONS(213), [anon_sym_DASH] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), [anon_sym_DASH_DASH] = ACTIONS(215), [anon_sym_PLUS_PLUS] = ACTIONS(215), [anon_sym_sizeof] = ACTIONS(217), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [447] = { - [anon_sym_LPAREN] = ACTIONS(755), + [451] = { + [anon_sym_LPAREN] = ACTIONS(759), [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(763), [sym_comment] = ACTIONS(123), }, - [448] = { - [anon_sym_RPAREN] = ACTIONS(1225), + [452] = { + [anon_sym_RPAREN] = ACTIONS(1240), [sym_comment] = ACTIONS(123), }, - [449] = { - [sym__expression] = STATE(339), + [453] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27765,10 +27935,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -27784,7 +27954,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [450] = { + [454] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -27809,7 +27979,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(452), + [sym_type_name] = STATE(456), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -27839,7 +28009,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [451] = { + [455] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), @@ -27880,12 +28050,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [452] = { - [anon_sym_RPAREN] = ACTIONS(1227), + [456] = { + [anon_sym_RPAREN] = ACTIONS(1242), [sym_comment] = ACTIONS(123), }, - [453] = { - [sym__expression] = STATE(339), + [457] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27902,61 +28072,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), [anon_sym_PLUS] = ACTIONS(520), [anon_sym_DASH] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), [anon_sym_DASH_DASH] = ACTIONS(522), [anon_sym_PLUS_PLUS] = ACTIONS(522), [anon_sym_sizeof] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [454] = { - [anon_sym_RPAREN] = ACTIONS(1233), + [458] = { + [anon_sym_RPAREN] = ACTIONS(1248), [sym_comment] = ACTIONS(123), }, - [455] = { - [sym__expression] = STATE(339), + [459] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -27973,10 +28143,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(514), [anon_sym_AMP] = ACTIONS(514), [anon_sym_BANG] = ACTIONS(516), @@ -27992,7 +28162,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [456] = { + [460] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -28017,7 +28187,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(458), + [sym_type_name] = STATE(462), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -28047,7 +28217,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [457] = { + [461] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), @@ -28088,12 +28258,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [458] = { - [anon_sym_RPAREN] = ACTIONS(1235), + [462] = { + [anon_sym_RPAREN] = ACTIONS(1250), [sym_comment] = ACTIONS(123), }, - [459] = { - [sym__expression] = STATE(339), + [463] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -28110,61 +28280,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_COLON] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_TILDE] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), [anon_sym_PLUS] = ACTIONS(315), [anon_sym_DASH] = ACTIONS(315), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), [anon_sym_DASH_DASH] = ACTIONS(317), [anon_sym_PLUS_PLUS] = ACTIONS(317), [anon_sym_sizeof] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [460] = { - [anon_sym_RPAREN] = ACTIONS(1241), + [464] = { + [anon_sym_RPAREN] = ACTIONS(1256), [sym_comment] = ACTIONS(123), }, - [461] = { - [sym__expression] = STATE(339), + [465] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -28181,10 +28351,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(309), [anon_sym_AMP] = ACTIONS(309), [anon_sym_BANG] = ACTIONS(311), @@ -28200,11 +28370,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [462] = { + [466] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_SEMI] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1124), [anon_sym_STAR] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(439), @@ -28242,250 +28412,250 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1243), - [anon_sym_POUNDinclude] = ACTIONS(1245), - [anon_sym_POUNDdefine] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_POUNDif] = ACTIONS(1245), - [anon_sym_POUNDendif] = ACTIONS(1245), - [anon_sym_POUNDifdef] = ACTIONS(1245), - [anon_sym_POUNDifndef] = ACTIONS(1245), - [anon_sym_POUNDelse] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [sym_function_specifier] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1245), - [sym_char_literal] = ACTIONS(1245), - [sym_string_literal] = ACTIONS(1243), - [sym_identifier] = ACTIONS(1247), + [467] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [anon_sym_POUNDinclude] = ACTIONS(1260), + [anon_sym_POUNDdefine] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_POUNDif] = ACTIONS(1260), + [anon_sym_POUNDendif] = ACTIONS(1260), + [anon_sym_POUNDifdef] = ACTIONS(1260), + [anon_sym_POUNDifndef] = ACTIONS(1260), + [anon_sym_POUNDelse] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [sym_function_specifier] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1260), + [sym_char_literal] = ACTIONS(1260), + [sym_string_literal] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1262), [sym_comment] = ACTIONS(123), }, - [464] = { - [sym__declarator] = STATE(265), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [468] = { + [sym__declarator] = STATE(266), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), [anon_sym_STAR] = ACTIONS(421), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [465] = { - [sym_compound_statement] = STATE(480), - [aux_sym_declaration_repeat1] = STATE(469), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1251), + [469] = { + [sym_compound_statement] = STATE(484), + [aux_sym_declaration_repeat1] = STATE(473), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1266), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [466] = { - [aux_sym_declaration_repeat1] = STATE(469), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1251), + [470] = { + [aux_sym_declaration_repeat1] = STATE(473), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1266), [sym_comment] = ACTIONS(123), }, - [467] = { - [sym__declarator] = STATE(478), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(479), + [471] = { + [sym__declarator] = STATE(482), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(483), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1270), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [anon_sym_POUNDinclude] = ACTIONS(1259), - [anon_sym_POUNDdefine] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_POUNDif] = ACTIONS(1259), - [anon_sym_POUNDendif] = ACTIONS(1259), - [anon_sym_POUNDifdef] = ACTIONS(1259), - [anon_sym_POUNDifndef] = ACTIONS(1259), - [anon_sym_POUNDelse] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [sym_function_specifier] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_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(1257), - [sym_identifier] = ACTIONS(1261), + [472] = { + [ts_builtin_sym_end] = ACTIONS(1272), + [anon_sym_POUNDinclude] = ACTIONS(1274), + [anon_sym_POUNDdefine] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_POUNDif] = ACTIONS(1274), + [anon_sym_POUNDendif] = ACTIONS(1274), + [anon_sym_POUNDifdef] = ACTIONS(1274), + [anon_sym_POUNDifndef] = ACTIONS(1274), + [anon_sym_POUNDelse] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [sym_function_specifier] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [sym_string_literal] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1276), [sym_comment] = ACTIONS(123), }, - [469] = { - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1265), + [473] = { + [anon_sym_COMMA] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1280), [sym_comment] = ACTIONS(123), }, - [470] = { - [sym__declarator] = STATE(473), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(474), + [474] = { + [sym__declarator] = STATE(477), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(478), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1270), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1267), - [anon_sym_POUNDinclude] = ACTIONS(1269), - [anon_sym_POUNDdefine] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_POUNDif] = ACTIONS(1269), - [anon_sym_POUNDendif] = ACTIONS(1269), - [anon_sym_POUNDifdef] = ACTIONS(1269), - [anon_sym_POUNDifndef] = ACTIONS(1269), - [anon_sym_POUNDelse] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [sym_function_specifier] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [sym_string_literal] = ACTIONS(1267), - [sym_identifier] = ACTIONS(1271), + [475] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [anon_sym_POUNDinclude] = ACTIONS(1284), + [anon_sym_POUNDdefine] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_POUNDif] = ACTIONS(1284), + [anon_sym_POUNDendif] = ACTIONS(1284), + [anon_sym_POUNDifdef] = ACTIONS(1284), + [anon_sym_POUNDifndef] = ACTIONS(1284), + [anon_sym_POUNDelse] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [sym_function_specifier] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1284), + [sym_char_literal] = ACTIONS(1284), + [sym_string_literal] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1286), [sym_comment] = ACTIONS(123), }, - [472] = { - [sym__declarator] = STATE(265), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [476] = { + [sym__declarator] = STATE(266), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1270), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [473] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [477] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [474] = { - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), + [478] = { + [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), [sym_comment] = ACTIONS(123), }, - [475] = { - [sym__expression] = STATE(476), + [479] = { + [sym__expression] = STATE(480), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -28502,10 +28672,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(477), + [sym_initializer_list] = STATE(481), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(145), [anon_sym_AMP] = ACTIONS(145), [anon_sym_BANG] = ACTIONS(183), @@ -28521,11 +28691,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [476] = { + [480] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_COMMA] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), [anon_sym_STAR] = ACTIONS(435), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(439), @@ -28563,281 +28733,281 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [477] = { - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), + [481] = { + [anon_sym_COMMA] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), [sym_comment] = ACTIONS(123), }, - [478] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [482] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [479] = { - [anon_sym_COMMA] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1277), + [483] = { + [anon_sym_COMMA] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), [sym_comment] = ACTIONS(123), }, - [480] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [anon_sym_POUNDinclude] = ACTIONS(1281), - [anon_sym_POUNDdefine] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_POUNDif] = ACTIONS(1281), - [anon_sym_POUNDendif] = ACTIONS(1281), - [anon_sym_POUNDifdef] = ACTIONS(1281), - [anon_sym_POUNDifndef] = ACTIONS(1281), - [anon_sym_POUNDelse] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_typedef] = 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(1279), - [sym_identifier] = ACTIONS(1283), + [484] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [anon_sym_POUNDinclude] = ACTIONS(1296), + [anon_sym_POUNDdefine] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_POUNDif] = ACTIONS(1296), + [anon_sym_POUNDendif] = ACTIONS(1296), + [anon_sym_POUNDifdef] = ACTIONS(1296), + [anon_sym_POUNDifndef] = ACTIONS(1296), + [anon_sym_POUNDelse] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [sym_function_specifier] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [sym_string_literal] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1298), [sym_comment] = ACTIONS(123), }, - [481] = { - [sym__declarator] = STATE(483), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(484), + [485] = { + [sym__declarator] = STATE(487), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(488), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1300), [anon_sym_STAR] = ACTIONS(421), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [482] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [anon_sym_POUNDinclude] = ACTIONS(1289), - [anon_sym_POUNDdefine] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_POUNDif] = ACTIONS(1289), - [anon_sym_POUNDendif] = ACTIONS(1289), - [anon_sym_POUNDifdef] = ACTIONS(1289), - [anon_sym_POUNDifndef] = ACTIONS(1289), - [anon_sym_POUNDelse] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [sym_function_specifier] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1289), - [sym_string_literal] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1291), + [486] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [anon_sym_POUNDinclude] = ACTIONS(1304), + [anon_sym_POUNDdefine] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(1304), + [anon_sym_POUNDendif] = ACTIONS(1304), + [anon_sym_POUNDifdef] = ACTIONS(1304), + [anon_sym_POUNDifndef] = ACTIONS(1304), + [anon_sym_POUNDelse] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [sym_function_specifier] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1304), + [sym_char_literal] = ACTIONS(1304), + [sym_string_literal] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(123), }, - [483] = { - [sym_compound_statement] = STATE(487), - [aux_sym_declaration_repeat1] = STATE(485), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1265), + [487] = { + [sym_compound_statement] = STATE(491), + [aux_sym_declaration_repeat1] = STATE(489), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1280), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [484] = { - [aux_sym_declaration_repeat1] = STATE(485), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1265), + [488] = { + [aux_sym_declaration_repeat1] = STATE(489), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1280), [sym_comment] = ACTIONS(123), }, - [485] = { - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1293), + [489] = { + [anon_sym_COMMA] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1308), [sym_comment] = ACTIONS(123), }, - [486] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [anon_sym_POUNDinclude] = ACTIONS(1297), - [anon_sym_POUNDdefine] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_POUNDif] = ACTIONS(1297), - [anon_sym_POUNDendif] = ACTIONS(1297), - [anon_sym_POUNDifdef] = ACTIONS(1297), - [anon_sym_POUNDifndef] = ACTIONS(1297), - [anon_sym_POUNDelse] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [sym_function_specifier] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1297), - [sym_char_literal] = ACTIONS(1297), - [sym_string_literal] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1299), + [490] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [anon_sym_POUNDinclude] = ACTIONS(1312), + [anon_sym_POUNDdefine] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_POUNDif] = ACTIONS(1312), + [anon_sym_POUNDendif] = ACTIONS(1312), + [anon_sym_POUNDifdef] = ACTIONS(1312), + [anon_sym_POUNDifndef] = ACTIONS(1312), + [anon_sym_POUNDelse] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [sym_function_specifier] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1312), + [sym_char_literal] = ACTIONS(1312), + [sym_string_literal] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1314), [sym_comment] = ACTIONS(123), }, - [487] = { - [ts_builtin_sym_end] = ACTIONS(1301), - [anon_sym_POUNDinclude] = ACTIONS(1303), - [anon_sym_POUNDdefine] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), - [anon_sym_POUNDif] = ACTIONS(1303), - [anon_sym_POUNDendif] = ACTIONS(1303), - [anon_sym_POUNDifdef] = ACTIONS(1303), - [anon_sym_POUNDifndef] = ACTIONS(1303), - [anon_sym_POUNDelse] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_typedef] = 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(1301), - [sym_identifier] = ACTIONS(1305), + [491] = { + [ts_builtin_sym_end] = ACTIONS(1316), + [anon_sym_POUNDinclude] = ACTIONS(1318), + [anon_sym_POUNDdefine] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_POUNDif] = ACTIONS(1318), + [anon_sym_POUNDendif] = ACTIONS(1318), + [anon_sym_POUNDifdef] = ACTIONS(1318), + [anon_sym_POUNDifndef] = ACTIONS(1318), + [anon_sym_POUNDelse] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [sym_function_specifier] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1318), + [sym_string_literal] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1320), [sym_comment] = ACTIONS(123), }, - [488] = { + [492] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -28895,10 +29065,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [489] = { + [493] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), @@ -28940,63 +29110,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [anon_sym_POUNDinclude] = ACTIONS(1311), - [anon_sym_POUNDdefine] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_POUNDif] = ACTIONS(1311), - [anon_sym_POUNDendif] = ACTIONS(1311), - [anon_sym_POUNDifdef] = ACTIONS(1311), - [anon_sym_POUNDifndef] = ACTIONS(1311), - [anon_sym_POUNDelse] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [sym_function_specifier] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1311), - [sym_string_literal] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1313), + [494] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [anon_sym_POUNDinclude] = ACTIONS(1326), + [anon_sym_POUNDdefine] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_POUNDif] = ACTIONS(1326), + [anon_sym_POUNDendif] = ACTIONS(1326), + [anon_sym_POUNDifdef] = ACTIONS(1326), + [anon_sym_POUNDifndef] = ACTIONS(1326), + [anon_sym_POUNDelse] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [sym_function_specifier] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1326), + [sym_char_literal] = ACTIONS(1326), + [sym_string_literal] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1328), [sym_comment] = ACTIONS(123), }, - [491] = { + [495] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -29021,7 +29191,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(493), + [sym_type_name] = STATE(497), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -29051,7 +29221,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [492] = { + [496] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(710), @@ -29093,12 +29263,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [493] = { - [anon_sym_RPAREN] = ACTIONS(1315), + [497] = { + [anon_sym_RPAREN] = ACTIONS(1330), [sym_comment] = ACTIONS(123), }, - [494] = { - [sym__expression] = STATE(339), + [498] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -29115,392 +29285,392 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), [anon_sym_PLUS] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), [anon_sym_DASH_DASH] = ACTIONS(189), [anon_sym_PLUS_PLUS] = ACTIONS(189), [anon_sym_sizeof] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [495] = { - [anon_sym_SEMI] = ACTIONS(1321), + [499] = { + [anon_sym_SEMI] = ACTIONS(1336), [sym_comment] = ACTIONS(123), }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [anon_sym_POUNDinclude] = ACTIONS(1325), - [anon_sym_POUNDdefine] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1323), - [anon_sym_POUNDif] = ACTIONS(1325), - [anon_sym_POUNDendif] = ACTIONS(1325), - [anon_sym_POUNDifdef] = ACTIONS(1325), - [anon_sym_POUNDifndef] = ACTIONS(1325), - [anon_sym_POUNDelse] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_typedef] = 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(1323), - [sym_identifier] = ACTIONS(1327), + [500] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [anon_sym_POUNDinclude] = ACTIONS(1340), + [anon_sym_POUNDdefine] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(1340), + [anon_sym_POUNDendif] = ACTIONS(1340), + [anon_sym_POUNDifdef] = ACTIONS(1340), + [anon_sym_POUNDifndef] = ACTIONS(1340), + [anon_sym_POUNDelse] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [sym_function_specifier] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1340), + [sym_char_literal] = ACTIONS(1340), + [sym_string_literal] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1342), [sym_comment] = ACTIONS(123), }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [anon_sym_POUNDinclude] = ACTIONS(1331), - [anon_sym_POUNDdefine] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_POUNDif] = ACTIONS(1331), - [anon_sym_POUNDendif] = ACTIONS(1331), - [anon_sym_POUNDifdef] = ACTIONS(1331), - [anon_sym_POUNDifndef] = ACTIONS(1331), - [anon_sym_POUNDelse] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_typedef] = 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(1329), - [sym_identifier] = ACTIONS(1333), + [501] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [anon_sym_POUNDinclude] = ACTIONS(1346), + [anon_sym_POUNDdefine] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_POUNDif] = ACTIONS(1346), + [anon_sym_POUNDendif] = ACTIONS(1346), + [anon_sym_POUNDifdef] = ACTIONS(1346), + [anon_sym_POUNDifndef] = ACTIONS(1346), + [anon_sym_POUNDelse] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [sym_function_specifier] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1346), + [sym_char_literal] = ACTIONS(1346), + [sym_string_literal] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1348), [sym_comment] = ACTIONS(123), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [anon_sym_POUNDinclude] = ACTIONS(1337), - [anon_sym_POUNDdefine] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_POUNDif] = ACTIONS(1337), - [anon_sym_POUNDendif] = ACTIONS(1337), - [anon_sym_POUNDifdef] = ACTIONS(1337), - [anon_sym_POUNDifndef] = ACTIONS(1337), - [anon_sym_POUNDelse] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [sym_function_specifier] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1337), - [sym_char_literal] = ACTIONS(1337), - [sym_string_literal] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1339), + [502] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [anon_sym_POUNDinclude] = ACTIONS(1352), + [anon_sym_POUNDdefine] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_POUNDif] = ACTIONS(1352), + [anon_sym_POUNDendif] = ACTIONS(1352), + [anon_sym_POUNDifdef] = ACTIONS(1352), + [anon_sym_POUNDifndef] = ACTIONS(1352), + [anon_sym_POUNDelse] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [sym_function_specifier] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1352), + [sym_string_literal] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1354), [sym_comment] = ACTIONS(123), }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [anon_sym_POUNDinclude] = ACTIONS(1343), - [anon_sym_POUNDdefine] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1341), - [anon_sym_POUNDif] = ACTIONS(1343), - [anon_sym_POUNDendif] = ACTIONS(1343), - [anon_sym_POUNDifdef] = ACTIONS(1343), - [anon_sym_POUNDifndef] = ACTIONS(1343), - [anon_sym_POUNDelse] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [sym_function_specifier] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1343), - [sym_char_literal] = ACTIONS(1343), - [sym_string_literal] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1345), + [503] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [anon_sym_POUNDinclude] = ACTIONS(1358), + [anon_sym_POUNDdefine] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_POUNDif] = ACTIONS(1358), + [anon_sym_POUNDendif] = ACTIONS(1358), + [anon_sym_POUNDifdef] = ACTIONS(1358), + [anon_sym_POUNDifndef] = ACTIONS(1358), + [anon_sym_POUNDelse] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [sym_function_specifier] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [sym_string_literal] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1360), [sym_comment] = ACTIONS(123), }, - [500] = { + [504] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(1349), - [anon_sym_POUNDinclude] = ACTIONS(1351), - [anon_sym_POUNDdefine] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_POUNDif] = ACTIONS(1351), - [anon_sym_POUNDendif] = ACTIONS(1351), - [anon_sym_POUNDifdef] = ACTIONS(1351), - [anon_sym_POUNDifndef] = ACTIONS(1351), - [anon_sym_POUNDelse] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [sym_function_specifier] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1351), - [sym_char_literal] = ACTIONS(1351), - [sym_string_literal] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1353), + [505] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [anon_sym_POUNDinclude] = ACTIONS(1366), + [anon_sym_POUNDdefine] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_POUNDif] = ACTIONS(1366), + [anon_sym_POUNDendif] = ACTIONS(1366), + [anon_sym_POUNDifdef] = ACTIONS(1366), + [anon_sym_POUNDifndef] = ACTIONS(1366), + [anon_sym_POUNDelse] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [sym_function_specifier] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1366), + [sym_char_literal] = ACTIONS(1366), + [sym_string_literal] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1368), [sym_comment] = ACTIONS(123), }, - [502] = { - [sym_declaration] = STATE(503), - [sym__declaration_specifiers] = STATE(505), + [506] = { + [sym_declaration] = STATE(507), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(507), + [sym__expression] = STATE(511), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -29522,7 +29692,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1370), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -29550,11 +29720,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [503] = { - [sym__expression] = STATE(528), + [507] = { + [sym__expression] = STATE(532), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -29573,7 +29743,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1374), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -29589,7 +29759,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [504] = { + [508] = { [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(380), @@ -29630,8 +29800,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [505] = { - [sym__type_specifier] = STATE(525), + [509] = { + [sym__type_specifier] = STATE(529), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -29647,60 +29817,60 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [506] = { - [sym__declarator] = STATE(524), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(466), + [510] = { + [sym__declarator] = STATE(528), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(470), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1270), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [507] = { + [511] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [508] = { - [sym__expression] = STATE(510), + [512] = { + [sym__expression] = STATE(514), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -29719,7 +29889,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -29735,8 +29905,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [509] = { - [sym__expression] = STATE(521), + [513] = { + [sym__expression] = STATE(525), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -29755,7 +29925,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1380), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -29771,49 +29941,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [510] = { + [514] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [511] = { - [sym__expression] = STATE(513), + [515] = { + [sym__expression] = STATE(517), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -29832,7 +30002,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1384), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -29848,9 +30018,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [512] = { + [516] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -29908,15 +30078,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [513] = { + [517] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(515), + [aux_sym_for_statement_repeat1] = STATE(519), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1386), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -29954,9 +30124,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [514] = { + [518] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -30014,17 +30184,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [515] = { + [519] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1388), [sym_comment] = ACTIONS(123), }, - [516] = { + [520] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -30082,180 +30252,180 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [517] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [anon_sym_POUNDinclude] = ACTIONS(1377), - [anon_sym_POUNDdefine] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_POUNDif] = ACTIONS(1377), - [anon_sym_POUNDendif] = ACTIONS(1377), - [anon_sym_POUNDifdef] = ACTIONS(1377), - [anon_sym_POUNDifndef] = ACTIONS(1377), - [anon_sym_POUNDelse] = ACTIONS(1377), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_typedef] = 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(1375), - [sym_identifier] = ACTIONS(1379), + [521] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [anon_sym_POUNDinclude] = ACTIONS(1392), + [anon_sym_POUNDdefine] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_POUNDif] = ACTIONS(1392), + [anon_sym_POUNDendif] = ACTIONS(1392), + [anon_sym_POUNDifdef] = ACTIONS(1392), + [anon_sym_POUNDifndef] = ACTIONS(1392), + [anon_sym_POUNDelse] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [sym_function_specifier] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1392), + [sym_char_literal] = ACTIONS(1392), + [sym_string_literal] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1394), [sym_comment] = ACTIONS(123), }, - [518] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [anon_sym_POUNDinclude] = ACTIONS(1383), - [anon_sym_POUNDdefine] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_POUNDif] = ACTIONS(1383), - [anon_sym_POUNDendif] = ACTIONS(1383), - [anon_sym_POUNDifdef] = ACTIONS(1383), - [anon_sym_POUNDifndef] = ACTIONS(1383), - [anon_sym_POUNDelse] = ACTIONS(1383), - [sym_preproc_directive] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_typedef] = 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(1381), - [sym_identifier] = ACTIONS(1385), + [522] = { + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_POUNDinclude] = ACTIONS(1398), + [anon_sym_POUNDdefine] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_POUNDif] = ACTIONS(1398), + [anon_sym_POUNDendif] = ACTIONS(1398), + [anon_sym_POUNDifdef] = ACTIONS(1398), + [anon_sym_POUNDifndef] = ACTIONS(1398), + [anon_sym_POUNDelse] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [sym_function_specifier] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [sym_string_literal] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1400), [sym_comment] = ACTIONS(123), }, - [519] = { - [ts_builtin_sym_end] = ACTIONS(1387), - [anon_sym_POUNDinclude] = ACTIONS(1389), - [anon_sym_POUNDdefine] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_POUNDif] = ACTIONS(1389), - [anon_sym_POUNDendif] = ACTIONS(1389), - [anon_sym_POUNDifdef] = ACTIONS(1389), - [anon_sym_POUNDifndef] = ACTIONS(1389), - [anon_sym_POUNDelse] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_typedef] = 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(1387), - [sym_identifier] = ACTIONS(1391), + [523] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_POUNDinclude] = ACTIONS(1404), + [anon_sym_POUNDdefine] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_POUNDif] = ACTIONS(1404), + [anon_sym_POUNDendif] = ACTIONS(1404), + [anon_sym_POUNDifdef] = ACTIONS(1404), + [anon_sym_POUNDifndef] = ACTIONS(1404), + [anon_sym_POUNDelse] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [sym_function_specifier] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1404), + [sym_char_literal] = ACTIONS(1404), + [sym_string_literal] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1406), [sym_comment] = ACTIONS(123), }, - [520] = { + [524] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -30313,15 +30483,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [521] = { + [525] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(522), + [aux_sym_for_statement_repeat1] = STATE(526), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1384), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -30359,98 +30529,98 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [522] = { + [526] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1386), [sym_comment] = ACTIONS(123), }, - [523] = { - [ts_builtin_sym_end] = ACTIONS(1393), - [anon_sym_POUNDinclude] = ACTIONS(1395), - [anon_sym_POUNDdefine] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_POUNDif] = ACTIONS(1395), - [anon_sym_POUNDendif] = ACTIONS(1395), - [anon_sym_POUNDifdef] = ACTIONS(1395), - [anon_sym_POUNDifndef] = ACTIONS(1395), - [anon_sym_POUNDelse] = ACTIONS(1395), - [sym_preproc_directive] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_typedef] = ACTIONS(1395), - [anon_sym_auto] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_restrict] = ACTIONS(1395), - [anon_sym_volatile] = ACTIONS(1395), - [sym_function_specifier] = ACTIONS(1395), - [anon_sym_unsigned] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_goto] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), - [sym_number_literal] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [sym_string_literal] = ACTIONS(1393), - [sym_identifier] = ACTIONS(1397), + [527] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [anon_sym_POUNDinclude] = ACTIONS(1410), + [anon_sym_POUNDdefine] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_POUNDif] = ACTIONS(1410), + [anon_sym_POUNDendif] = ACTIONS(1410), + [anon_sym_POUNDifdef] = ACTIONS(1410), + [anon_sym_POUNDifndef] = ACTIONS(1410), + [anon_sym_POUNDelse] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [sym_function_specifier] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [sym_string_literal] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1412), [sym_comment] = ACTIONS(123), }, - [524] = { - [aux_sym_declaration_repeat1] = STATE(469), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [528] = { + [aux_sym_declaration_repeat1] = STATE(473), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [525] = { - [sym__declarator] = STATE(526), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(484), + [529] = { + [sym__declarator] = STATE(530), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(488), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1270), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [526] = { - [aux_sym_declaration_repeat1] = STATE(485), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [530] = { + [aux_sym_declaration_repeat1] = STATE(489), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [527] = { - [sym__expression] = STATE(530), + [531] = { + [sym__expression] = STATE(534), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -30469,7 +30639,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -30485,50 +30655,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [528] = { + [532] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [529] = { + [533] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -30586,15 +30756,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [530] = { + [534] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(531), + [aux_sym_for_statement_repeat1] = STATE(535), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1380), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -30632,77 +30802,77 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [531] = { + [535] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1384), [sym_comment] = ACTIONS(123), }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(1401), - [anon_sym_POUNDinclude] = ACTIONS(1403), - [anon_sym_POUNDdefine] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_POUNDif] = ACTIONS(1403), - [anon_sym_POUNDendif] = ACTIONS(1403), - [anon_sym_POUNDifdef] = ACTIONS(1403), - [anon_sym_POUNDifndef] = ACTIONS(1403), - [anon_sym_POUNDelse] = ACTIONS(1403), - [sym_preproc_directive] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_typedef] = ACTIONS(1403), - [anon_sym_auto] = ACTIONS(1403), - [anon_sym_register] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_restrict] = ACTIONS(1403), - [anon_sym_volatile] = ACTIONS(1403), - [sym_function_specifier] = ACTIONS(1403), - [anon_sym_unsigned] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [anon_sym_enum] = ACTIONS(1403), - [anon_sym_struct] = ACTIONS(1403), - [anon_sym_union] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_else] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_case] = ACTIONS(1403), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_goto] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_sizeof] = ACTIONS(1403), - [sym_number_literal] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [sym_string_literal] = ACTIONS(1401), - [sym_identifier] = ACTIONS(1405), + [536] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [anon_sym_POUNDinclude] = ACTIONS(1418), + [anon_sym_POUNDdefine] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_POUNDif] = ACTIONS(1418), + [anon_sym_POUNDendif] = ACTIONS(1418), + [anon_sym_POUNDifdef] = ACTIONS(1418), + [anon_sym_POUNDifndef] = ACTIONS(1418), + [anon_sym_POUNDelse] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [sym_function_specifier] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [sym_string_literal] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1420), [sym_comment] = ACTIONS(123), }, - [533] = { - [anon_sym_LPAREN] = ACTIONS(1407), + [537] = { + [anon_sym_LPAREN] = ACTIONS(1422), [sym_comment] = ACTIONS(123), }, - [534] = { - [anon_sym_LPAREN] = ACTIONS(1409), + [538] = { + [anon_sym_LPAREN] = ACTIONS(1424), [sym_comment] = ACTIONS(123), }, - [535] = { - [sym__expression] = STATE(609), + [539] = { + [sym__expression] = STATE(613), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -30736,26 +30906,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [536] = { - [anon_sym_COLON] = ACTIONS(1411), + [540] = { + [anon_sym_COLON] = ACTIONS(1426), [sym_comment] = ACTIONS(123), }, - [537] = { - [anon_sym_LPAREN] = ACTIONS(1413), + [541] = { + [anon_sym_LPAREN] = ACTIONS(1428), [sym_comment] = ACTIONS(123), }, - [538] = { - [anon_sym_LPAREN] = ACTIONS(1415), + [542] = { + [anon_sym_LPAREN] = ACTIONS(1430), [sym_comment] = ACTIONS(123), }, - [539] = { + [543] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1417), + [anon_sym_COLON] = ACTIONS(1432), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -30790,211 +30960,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [540] = { - [anon_sym_while] = ACTIONS(1419), - [sym_comment] = ACTIONS(123), - }, - [541] = { - [anon_sym_LPAREN] = ACTIONS(1421), - [sym_comment] = ACTIONS(123), - }, - [542] = { - [sym__expression] = STATE(549), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), - [sym_comment] = ACTIONS(123), - }, - [543] = { - [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(200), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym_struct_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(580), - [sym_concatenated_string] = STATE(34), - [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(204), - [aux_sym_sized_type_specifier_repeat1] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_const] = ACTIONS(149), - [anon_sym_restrict] = ACTIONS(149), - [anon_sym_volatile] = ACTIONS(149), - [anon_sym_unsigned] = ACTIONS(153), - [anon_sym_long] = ACTIONS(153), - [anon_sym_short] = ACTIONS(153), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_struct] = ACTIONS(157), - [anon_sym_union] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_sizeof] = ACTIONS(217), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(219), - [sym_comment] = ACTIONS(123), - }, [544] = { - [sym__expression] = STATE(403), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), + [anon_sym_while] = ACTIONS(1434), [sym_comment] = ACTIONS(123), }, [545] = { - [sym__expression] = STATE(402), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1436), [sym_comment] = ACTIONS(123), }, [546] = { - [sym__expression] = STATE(401), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), - [sym_comment] = ACTIONS(123), - }, - [547] = { - [sym__expression] = STATE(400), + [sym__expression] = STATE(553), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31012,24 +30987,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, + [547] = { + [sym_type_qualifier] = STATE(199), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(44), + [sym_enum_specifier] = STATE(44), + [sym_struct_specifier] = STATE(44), + [sym_union_specifier] = STATE(44), + [sym__expression] = STATE(201), + [sym_comma_expression] = STATE(202), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_type_name] = STATE(584), + [sym_concatenated_string] = STATE(34), + [sym_macro_type_specifier] = STATE(44), + [aux_sym_array_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_const] = ACTIONS(149), + [anon_sym_restrict] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_unsigned] = ACTIONS(153), + [anon_sym_long] = ACTIONS(153), + [anon_sym_short] = ACTIONS(153), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_struct] = ACTIONS(157), + [anon_sym_union] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_sizeof] = ACTIONS(217), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(219), + [sym_comment] = ACTIONS(123), + }, [548] = { - [sym__expression] = STATE(577), + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31047,16 +31077,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), @@ -31064,103 +31094,243 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(123), }, [549] = { + [sym__expression] = STATE(406), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [550] = { + [sym__expression] = STATE(405), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [551] = { + [sym__expression] = STATE(404), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [552] = { + [sym__expression] = STATE(581), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [553] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [550] = { - [ts_builtin_sym_end] = ACTIONS(1469), - [anon_sym_POUNDinclude] = ACTIONS(1471), - [anon_sym_POUNDdefine] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_POUNDif] = ACTIONS(1471), - [anon_sym_POUNDendif] = ACTIONS(1471), - [anon_sym_POUNDifdef] = ACTIONS(1471), - [anon_sym_POUNDifndef] = ACTIONS(1471), - [anon_sym_POUNDelse] = ACTIONS(1471), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_typedef] = 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(1469), - [sym_identifier] = ACTIONS(1473), + [554] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [anon_sym_POUNDinclude] = ACTIONS(1486), + [anon_sym_POUNDdefine] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_POUNDif] = ACTIONS(1486), + [anon_sym_POUNDendif] = ACTIONS(1486), + [anon_sym_POUNDifdef] = ACTIONS(1486), + [anon_sym_POUNDifndef] = ACTIONS(1486), + [anon_sym_POUNDelse] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [sym_function_specifier] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [sym_string_literal] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1488), [sym_comment] = ACTIONS(123), }, - [551] = { + [555] = { [sym__expression] = STATE(75), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -31179,24 +31349,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [552] = { - [sym__expression] = STATE(572), + [556] = { + [sym__expression] = STATE(576), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31214,24 +31384,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [553] = { - [sym__expression] = STATE(573), + [557] = { + [sym__expression] = STATE(577), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31265,8 +31435,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [554] = { - [sym__expression] = STATE(571), + [558] = { + [sym__expression] = STATE(575), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31284,24 +31454,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [555] = { - [sym__expression] = STATE(570), + [559] = { + [sym__expression] = STATE(574), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31319,24 +31489,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [556] = { - [sym__expression] = STATE(569), + [560] = { + [sym__expression] = STATE(573), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31354,24 +31524,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [557] = { - [sym__expression] = STATE(568), + [561] = { + [sym__expression] = STATE(572), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31389,24 +31559,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [558] = { - [sym__expression] = STATE(567), + [562] = { + [sym__expression] = STATE(571), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31424,24 +31594,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [559] = { - [sym__expression] = STATE(566), + [563] = { + [sym__expression] = STATE(570), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31459,24 +31629,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [560] = { - [sym__expression] = STATE(565), + [564] = { + [sym__expression] = STATE(569), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31494,24 +31664,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [561] = { - [sym__expression] = STATE(564), + [565] = { + [sym__expression] = STATE(568), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31529,24 +31699,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [562] = { - [sym__expression] = STATE(563), + [566] = { + [sym__expression] = STATE(567), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -31564,27 +31734,27 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [563] = { + [567] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(542), [anon_sym_QMARK] = ACTIONS(540), @@ -31613,19 +31783,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(542), [anon_sym_PLUS] = ACTIONS(542), [anon_sym_DASH] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [564] = { + [568] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(546), [anon_sym_QMARK] = ACTIONS(544), @@ -31652,21 +31822,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(544), [anon_sym_LT_LT] = ACTIONS(546), [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [565] = { + [569] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(550), [anon_sym_QMARK] = ACTIONS(548), @@ -31691,23 +31861,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(550), [anon_sym_LT_EQ] = ACTIONS(548), [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [566] = { + [570] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(554), [anon_sym_QMARK] = ACTIONS(552), @@ -31728,27 +31898,27 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(554), [anon_sym_EQ_EQ] = ACTIONS(552), [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [567] = { + [571] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -31762,34 +31932,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1464), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [568] = { + [572] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -31803,34 +31973,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1464), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [569] = { + [573] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), @@ -31844,34 +32014,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1464), [anon_sym_PIPE_PIPE] = ACTIONS(560), [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [570] = { + [574] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), @@ -31885,34 +32055,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1464), [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [571] = { + [575] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), @@ -31931,72 +32101,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [572] = { + [576] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1458), [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [573] = { + [577] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1475), + [anon_sym_COLON] = ACTIONS(1490), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -32031,8 +32201,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [574] = { - [sym__expression] = STATE(575), + [578] = { + [sym__expression] = STATE(579), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32050,64 +32220,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [575] = { + [579] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [576] = { + [580] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -32132,7 +32302,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(578), + [sym_type_name] = STATE(582), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -32162,11 +32332,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [577] = { + [581] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(712), [anon_sym_QMARK] = ACTIONS(710), @@ -32191,24 +32361,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(712), [anon_sym_LT_EQ] = ACTIONS(710), [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [578] = { - [anon_sym_RPAREN] = ACTIONS(1477), + [582] = { + [anon_sym_RPAREN] = ACTIONS(1492), [sym_comment] = ACTIONS(123), }, - [579] = { - [sym__expression] = STATE(339), + [583] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32225,61 +32395,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [580] = { - [anon_sym_RPAREN] = ACTIONS(1483), + [584] = { + [anon_sym_RPAREN] = ACTIONS(1498), [sym_comment] = ACTIONS(123), }, - [581] = { - [sym__expression] = STATE(339), + [585] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32296,28 +32466,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [582] = { + [586] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -32378,17 +32548,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [583] = { - [sym_declaration] = STATE(584), - [sym__declaration_specifiers] = STATE(505), + [587] = { + [sym_declaration] = STATE(588), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(585), + [sym__expression] = STATE(589), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32410,7 +32580,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1500), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -32438,11 +32608,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [584] = { - [sym__expression] = STATE(599), + [588] = { + [sym__expression] = STATE(603), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32461,7 +32631,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1502), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -32477,49 +32647,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [585] = { + [589] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [586] = { - [sym__expression] = STATE(588), + [590] = { + [sym__expression] = STATE(592), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32538,7 +32708,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1506), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -32554,8 +32724,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [587] = { - [sym__expression] = STATE(596), + [591] = { + [sym__expression] = STATE(600), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32574,7 +32744,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1508), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -32590,49 +32760,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [588] = { + [592] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [589] = { - [sym__expression] = STATE(591), + [593] = { + [sym__expression] = STATE(595), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -32651,7 +32821,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1512), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -32667,9 +32837,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [590] = { + [594] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -32730,12 +32900,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [591] = { + [595] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(593), + [aux_sym_for_statement_repeat1] = STATE(597), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1514), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -32773,9 +32943,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [592] = { + [596] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -32836,14 +33006,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [593] = { + [597] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1516), [sym_comment] = ACTIONS(123), }, - [594] = { + [598] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -32904,9 +33074,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [595] = { + [599] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -32967,12 +33137,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [596] = { + [600] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(597), + [aux_sym_for_statement_repeat1] = STATE(601), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1512), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -33010,13 +33180,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [597] = { + [601] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1514), [sym_comment] = ACTIONS(123), }, - [598] = { - [sym__expression] = STATE(601), + [602] = { + [sym__expression] = STATE(605), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -33035,7 +33205,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1518), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -33051,50 +33221,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [599] = { + [603] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [600] = { + [604] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -33155,12 +33325,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [601] = { + [605] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(602), + [aux_sym_for_statement_repeat1] = STATE(606), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1508), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -33198,13 +33368,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [602] = { + [606] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1512), [sym_comment] = ACTIONS(123), }, - [603] = { - [sym__expression] = STATE(604), + [607] = { + [sym__expression] = STATE(608), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -33222,66 +33392,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [604] = { + [608] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [605] = { + [609] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -33342,65 +33512,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [606] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [anon_sym_POUNDinclude] = ACTIONS(1509), - [anon_sym_POUNDdefine] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_POUNDif] = ACTIONS(1509), - [anon_sym_POUNDendif] = ACTIONS(1509), - [anon_sym_POUNDifdef] = ACTIONS(1509), - [anon_sym_POUNDifndef] = ACTIONS(1509), - [anon_sym_POUNDelse] = ACTIONS(1509), - [sym_preproc_directive] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_typedef] = ACTIONS(1509), - [anon_sym_auto] = ACTIONS(1509), - [anon_sym_register] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_restrict] = ACTIONS(1509), - [anon_sym_volatile] = ACTIONS(1509), - [sym_function_specifier] = ACTIONS(1509), - [anon_sym_unsigned] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_else] = ACTIONS(1509), - [anon_sym_switch] = ACTIONS(1509), - [anon_sym_case] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_do] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_goto] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_sizeof] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [sym_string_literal] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1511), + [610] = { + [ts_builtin_sym_end] = ACTIONS(1522), + [anon_sym_POUNDinclude] = ACTIONS(1524), + [anon_sym_POUNDdefine] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_POUNDif] = ACTIONS(1524), + [anon_sym_POUNDendif] = ACTIONS(1524), + [anon_sym_POUNDifdef] = ACTIONS(1524), + [anon_sym_POUNDifndef] = ACTIONS(1524), + [anon_sym_POUNDelse] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [sym_function_specifier] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1524), + [sym_char_literal] = ACTIONS(1524), + [sym_string_literal] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1526), [sym_comment] = ACTIONS(123), }, - [607] = { + [611] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -33461,69 +33631,69 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [608] = { - [ts_builtin_sym_end] = ACTIONS(1513), - [anon_sym_POUNDinclude] = ACTIONS(1515), - [anon_sym_POUNDdefine] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_POUNDif] = ACTIONS(1515), - [anon_sym_POUNDendif] = ACTIONS(1515), - [anon_sym_POUNDifdef] = ACTIONS(1515), - [anon_sym_POUNDifndef] = ACTIONS(1515), - [anon_sym_POUNDelse] = ACTIONS(1515), - [sym_preproc_directive] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1515), - [anon_sym_auto] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_restrict] = ACTIONS(1515), - [anon_sym_volatile] = ACTIONS(1515), - [sym_function_specifier] = ACTIONS(1515), - [anon_sym_unsigned] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_goto] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1515), - [sym_number_literal] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [sym_string_literal] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1517), + [612] = { + [ts_builtin_sym_end] = ACTIONS(1528), + [anon_sym_POUNDinclude] = ACTIONS(1530), + [anon_sym_POUNDdefine] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_POUNDif] = ACTIONS(1530), + [anon_sym_POUNDendif] = ACTIONS(1530), + [anon_sym_POUNDifdef] = ACTIONS(1530), + [anon_sym_POUNDifndef] = ACTIONS(1530), + [anon_sym_POUNDelse] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [sym_function_specifier] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1530), + [sym_char_literal] = ACTIONS(1530), + [sym_string_literal] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1532), [sym_comment] = ACTIONS(123), }, - [609] = { + [613] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1519), + [anon_sym_COLON] = ACTIONS(1534), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -33558,9 +33728,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [610] = { + [614] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -33621,64 +33791,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [anon_sym_POUNDinclude] = ACTIONS(1523), - [anon_sym_POUNDdefine] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_POUNDif] = ACTIONS(1523), - [anon_sym_POUNDendif] = ACTIONS(1523), - [anon_sym_POUNDifdef] = ACTIONS(1523), - [anon_sym_POUNDifndef] = ACTIONS(1523), - [anon_sym_POUNDelse] = ACTIONS(1523), - [sym_preproc_directive] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_typedef] = ACTIONS(1523), - [anon_sym_auto] = ACTIONS(1523), - [anon_sym_register] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_restrict] = ACTIONS(1523), - [anon_sym_volatile] = ACTIONS(1523), - [sym_function_specifier] = ACTIONS(1523), - [anon_sym_unsigned] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_else] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_case] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_goto] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_sizeof] = ACTIONS(1523), - [sym_number_literal] = ACTIONS(1523), - [sym_char_literal] = ACTIONS(1523), - [sym_string_literal] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1525), + [615] = { + [ts_builtin_sym_end] = ACTIONS(1536), + [anon_sym_POUNDinclude] = ACTIONS(1538), + [anon_sym_POUNDdefine] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_POUNDif] = ACTIONS(1538), + [anon_sym_POUNDendif] = ACTIONS(1538), + [anon_sym_POUNDifdef] = ACTIONS(1538), + [anon_sym_POUNDifndef] = ACTIONS(1538), + [anon_sym_POUNDelse] = ACTIONS(1538), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [sym_function_specifier] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_sizeof] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1538), + [sym_char_literal] = ACTIONS(1538), + [sym_string_literal] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1540), [sym_comment] = ACTIONS(123), }, - [612] = { - [sym__expression] = STATE(613), + [616] = { + [sym__expression] = STATE(617), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -33696,66 +33866,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [613] = { + [617] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [614] = { + [618] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -33816,64 +33986,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [615] = { - [ts_builtin_sym_end] = ACTIONS(1529), - [anon_sym_POUNDinclude] = ACTIONS(1531), - [anon_sym_POUNDdefine] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_POUNDif] = ACTIONS(1531), - [anon_sym_POUNDendif] = ACTIONS(1531), - [anon_sym_POUNDifdef] = ACTIONS(1531), - [anon_sym_POUNDifndef] = ACTIONS(1531), - [anon_sym_POUNDelse] = ACTIONS(1531), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1531), - [anon_sym_auto] = ACTIONS(1531), - [anon_sym_register] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_restrict] = ACTIONS(1531), - [anon_sym_volatile] = ACTIONS(1531), - [sym_function_specifier] = ACTIONS(1531), - [anon_sym_unsigned] = ACTIONS(1531), - [anon_sym_long] = ACTIONS(1531), - [anon_sym_short] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_union] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_else] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1531), - [anon_sym_case] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_goto] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_sizeof] = ACTIONS(1531), - [sym_number_literal] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [sym_string_literal] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1533), + [619] = { + [ts_builtin_sym_end] = ACTIONS(1544), + [anon_sym_POUNDinclude] = ACTIONS(1546), + [anon_sym_POUNDdefine] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_POUNDif] = ACTIONS(1546), + [anon_sym_POUNDendif] = ACTIONS(1546), + [anon_sym_POUNDifdef] = ACTIONS(1546), + [anon_sym_POUNDifndef] = ACTIONS(1546), + [anon_sym_POUNDelse] = ACTIONS(1546), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_typedef] = ACTIONS(1546), + [anon_sym_auto] = ACTIONS(1546), + [anon_sym_register] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_restrict] = ACTIONS(1546), + [anon_sym_volatile] = ACTIONS(1546), + [sym_function_specifier] = ACTIONS(1546), + [anon_sym_unsigned] = ACTIONS(1546), + [anon_sym_long] = ACTIONS(1546), + [anon_sym_short] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_goto] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(1544), + [anon_sym_sizeof] = ACTIONS(1546), + [sym_number_literal] = ACTIONS(1546), + [sym_char_literal] = ACTIONS(1546), + [sym_string_literal] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1548), [sym_comment] = ACTIONS(123), }, - [616] = { - [sym__expression] = STATE(617), + [620] = { + [sym__expression] = STATE(621), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -33891,66 +34061,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [617] = { + [621] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [618] = { + [622] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(626), + [sym__statement] = STATE(630), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -33986,13 +34156,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -34008,19 +34178,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [619] = { - [anon_sym_LPAREN] = ACTIONS(1551), + [623] = { + [anon_sym_LPAREN] = ACTIONS(1566), [sym_comment] = ACTIONS(123), }, - [620] = { - [anon_sym_LPAREN] = ACTIONS(1553), + [624] = { + [anon_sym_LPAREN] = ACTIONS(1568), [sym_comment] = ACTIONS(123), }, - [621] = { - [sym__expression] = STATE(654), + [625] = { + [sym__expression] = STATE(658), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -34054,26 +34224,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [622] = { - [anon_sym_COLON] = ACTIONS(1555), + [626] = { + [anon_sym_COLON] = ACTIONS(1570), [sym_comment] = ACTIONS(123), }, - [623] = { - [anon_sym_LPAREN] = ACTIONS(1557), + [627] = { + [anon_sym_LPAREN] = ACTIONS(1572), [sym_comment] = ACTIONS(123), }, - [624] = { - [anon_sym_LPAREN] = ACTIONS(1559), + [628] = { + [anon_sym_LPAREN] = ACTIONS(1574), [sym_comment] = ACTIONS(123), }, - [625] = { + [629] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1561), + [anon_sym_COLON] = ACTIONS(1576), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -34108,14 +34278,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [626] = { - [anon_sym_else] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1565), + [630] = { + [anon_sym_else] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1580), [sym_comment] = ACTIONS(123), }, - [627] = { + [631] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -34176,65 +34346,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(337), [sym_comment] = ACTIONS(123), }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(1567), - [anon_sym_POUNDinclude] = ACTIONS(1569), - [anon_sym_POUNDdefine] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_POUNDif] = ACTIONS(1569), - [anon_sym_POUNDendif] = ACTIONS(1569), - [anon_sym_POUNDifdef] = ACTIONS(1569), - [anon_sym_POUNDifndef] = ACTIONS(1569), - [anon_sym_POUNDelse] = ACTIONS(1569), - [sym_preproc_directive] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_auto] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [sym_function_specifier] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1569), - [sym_char_literal] = ACTIONS(1569), - [sym_string_literal] = ACTIONS(1567), - [sym_identifier] = ACTIONS(1571), + [632] = { + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_POUNDinclude] = ACTIONS(1584), + [anon_sym_POUNDdefine] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_POUNDif] = ACTIONS(1584), + [anon_sym_POUNDendif] = ACTIONS(1584), + [anon_sym_POUNDifdef] = ACTIONS(1584), + [anon_sym_POUNDifndef] = ACTIONS(1584), + [anon_sym_POUNDelse] = ACTIONS(1584), + [sym_preproc_directive] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_typedef] = ACTIONS(1584), + [anon_sym_auto] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_restrict] = ACTIONS(1584), + [anon_sym_volatile] = ACTIONS(1584), + [sym_function_specifier] = ACTIONS(1584), + [anon_sym_unsigned] = ACTIONS(1584), + [anon_sym_long] = ACTIONS(1584), + [anon_sym_short] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_switch] = ACTIONS(1584), + [anon_sym_case] = ACTIONS(1584), + [anon_sym_default] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_goto] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_sizeof] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1582), + [sym_identifier] = ACTIONS(1586), [sym_comment] = ACTIONS(123), }, - [629] = { + [633] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -34270,13 +34440,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -34292,20 +34462,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [630] = { - [sym_declaration] = STATE(631), - [sym__declaration_specifiers] = STATE(505), + [634] = { + [sym_declaration] = STATE(635), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(632), + [sym__expression] = STATE(636), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -34327,7 +34497,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1588), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -34355,11 +34525,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [631] = { - [sym__expression] = STATE(646), + [635] = { + [sym__expression] = STATE(650), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -34378,7 +34548,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1590), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -34394,49 +34564,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [632] = { + [636] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [633] = { - [sym__expression] = STATE(635), + [637] = { + [sym__expression] = STATE(639), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -34455,7 +34625,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1594), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -34471,8 +34641,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [634] = { - [sym__expression] = STATE(643), + [638] = { + [sym__expression] = STATE(647), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -34491,7 +34661,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1596), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -34507,49 +34677,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [635] = { + [639] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [636] = { - [sym__expression] = STATE(638), + [640] = { + [sym__expression] = STATE(642), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -34568,7 +34738,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1600), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -34584,9 +34754,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [637] = { + [641] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -34622,13 +34792,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -34644,15 +34814,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [638] = { + [642] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(640), + [aux_sym_for_statement_repeat1] = STATE(644), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1602), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -34690,9 +34860,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [639] = { + [643] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -34728,13 +34898,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -34750,80 +34920,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [640] = { + [644] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1604), [sym_comment] = ACTIONS(123), }, - [641] = { - [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(45), - [sym_comma_expression] = STATE(46), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_goto] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(123), - }, - [642] = { + [645] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -34859,13 +34966,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -34881,137 +34988,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(123), - }, - [643] = { - [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(467), - [anon_sym_DASH_GT] = ACTIONS(467), - [sym_comment] = ACTIONS(123), - }, - [644] = { - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1587), - [sym_comment] = ACTIONS(123), - }, - [645] = { - [sym__expression] = STATE(648), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_sizeof] = ACTIONS(217), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, [646] = { - [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(467), - [anon_sym_DASH_GT] = ACTIONS(467), - [sym_comment] = ACTIONS(123), - }, - [647] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -35047,13 +35029,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -35069,15 +35051,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [648] = { + [647] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(649), + [aux_sym_for_statement_repeat1] = STATE(648), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1600), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -35115,13 +35097,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [649] = { + [648] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1602), [sym_comment] = ACTIONS(123), }, - [650] = { - [sym__expression] = STATE(651), + [649] = { + [sym__expression] = STATE(652), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -35139,66 +35121,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_sizeof] = ACTIONS(217), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [651] = { + [650] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [652] = { + [651] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -35234,13 +35217,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -35256,12 +35239,136 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), + [sym_comment] = ACTIONS(123), + }, + [652] = { + [sym_argument_list] = STATE(72), + [aux_sym_for_statement_repeat1] = STATE(653), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(652), + [anon_sym_QMARK] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(467), + [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, [653] = { + [anon_sym_COMMA] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(1600), + [sym_comment] = ACTIONS(123), + }, + [654] = { + [sym__expression] = STATE(655), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [655] = { + [sym_argument_list] = STATE(72), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(467), + [anon_sym_DASH_GT] = ACTIONS(467), + [sym_comment] = ACTIONS(123), + }, + [656] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -35297,13 +35404,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -35319,16 +35426,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [654] = { + [657] = { + [sym_compound_statement] = STATE(42), + [sym__statement] = STATE(612), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(45), + [sym_comma_expression] = STATE(46), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(171), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(175), + [anon_sym_break] = ACTIONS(177), + [anon_sym_continue] = ACTIONS(179), + [anon_sym_goto] = ACTIONS(181), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_sizeof] = ACTIONS(191), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(1564), + [sym_comment] = ACTIONS(123), + }, + [658] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1595), + [anon_sym_COLON] = ACTIONS(1610), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -35363,9 +35533,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [655] = { + [659] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -35401,13 +35571,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -35423,11 +35593,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [656] = { - [sym__expression] = STATE(657), + [660] = { + [sym__expression] = STATE(661), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -35445,66 +35615,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [657] = { + [661] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [658] = { + [662] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -35540,13 +35710,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -35562,11 +35732,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [659] = { - [sym__expression] = STATE(660), + [663] = { + [sym__expression] = STATE(664), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -35584,66 +35754,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [660] = { + [664] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [661] = { + [665] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(662), + [sym__statement] = STATE(666), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -35679,13 +35849,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -35701,17 +35871,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [662] = { - [anon_sym_else] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1565), + [666] = { + [anon_sym_else] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1580), [sym_comment] = ACTIONS(123), }, - [663] = { + [667] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -35747,13 +35917,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1562), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -35769,75 +35939,75 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1564), [sym_comment] = ACTIONS(123), }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [anon_sym_POUNDinclude] = ACTIONS(1605), - [anon_sym_POUNDdefine] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_POUNDif] = ACTIONS(1605), - [anon_sym_POUNDendif] = ACTIONS(1605), - [anon_sym_POUNDifdef] = ACTIONS(1605), - [anon_sym_POUNDifndef] = ACTIONS(1605), - [anon_sym_POUNDelse] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_auto] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [sym_function_specifier] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [sym_string_literal] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1607), + [668] = { + [ts_builtin_sym_end] = ACTIONS(1618), + [anon_sym_POUNDinclude] = ACTIONS(1620), + [anon_sym_POUNDdefine] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_POUNDif] = ACTIONS(1620), + [anon_sym_POUNDendif] = ACTIONS(1620), + [anon_sym_POUNDifdef] = ACTIONS(1620), + [anon_sym_POUNDifndef] = ACTIONS(1620), + [anon_sym_POUNDelse] = ACTIONS(1620), + [sym_preproc_directive] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1620), + [anon_sym_typedef] = ACTIONS(1620), + [anon_sym_auto] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1620), + [anon_sym_restrict] = ACTIONS(1620), + [anon_sym_volatile] = ACTIONS(1620), + [sym_function_specifier] = ACTIONS(1620), + [anon_sym_unsigned] = ACTIONS(1620), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_short] = ACTIONS(1620), + [anon_sym_enum] = ACTIONS(1620), + [anon_sym_struct] = ACTIONS(1620), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_else] = ACTIONS(1620), + [anon_sym_switch] = ACTIONS(1620), + [anon_sym_case] = ACTIONS(1620), + [anon_sym_default] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_do] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_return] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_goto] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_sizeof] = ACTIONS(1620), + [sym_number_literal] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [sym_string_literal] = ACTIONS(1618), + [sym_identifier] = ACTIONS(1622), [sym_comment] = ACTIONS(123), }, - [665] = { - [anon_sym_LPAREN] = ACTIONS(1609), + [669] = { + [anon_sym_LPAREN] = ACTIONS(1624), [sym_comment] = ACTIONS(123), }, - [666] = { - [anon_sym_LPAREN] = ACTIONS(1611), + [670] = { + [anon_sym_LPAREN] = ACTIONS(1626), [sym_comment] = ACTIONS(123), }, - [667] = { - [sym__expression] = STATE(700), + [671] = { + [sym__expression] = STATE(704), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -35871,19 +36041,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [668] = { - [anon_sym_COLON] = ACTIONS(1613), + [672] = { + [anon_sym_COLON] = ACTIONS(1628), [sym_comment] = ACTIONS(123), }, - [669] = { - [anon_sym_LPAREN] = ACTIONS(1615), + [673] = { + [anon_sym_LPAREN] = ACTIONS(1630), [sym_comment] = ACTIONS(123), }, - [670] = { - [anon_sym_LPAREN] = ACTIONS(1617), + [674] = { + [anon_sym_LPAREN] = ACTIONS(1632), [sym_comment] = ACTIONS(123), }, - [671] = { + [675] = { [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(377), @@ -35891,7 +36061,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(380), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1619), + [anon_sym_COLON] = ACTIONS(1634), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -35927,7 +36097,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [672] = { + [676] = { [sym__top_level_item] = STATE(53), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -35994,7 +36164,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1636), [anon_sym_STAR] = ACTIONS(145), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -36035,65 +36205,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(271), [sym_comment] = ACTIONS(123), }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [anon_sym_POUNDinclude] = ACTIONS(1625), - [anon_sym_POUNDdefine] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_POUNDif] = ACTIONS(1625), - [anon_sym_POUNDendif] = ACTIONS(1625), - [anon_sym_POUNDifdef] = ACTIONS(1625), - [anon_sym_POUNDifndef] = ACTIONS(1625), - [anon_sym_POUNDelse] = ACTIONS(1625), - [sym_preproc_directive] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_typedef] = ACTIONS(1625), - [anon_sym_auto] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_restrict] = ACTIONS(1625), - [anon_sym_volatile] = ACTIONS(1625), - [sym_function_specifier] = ACTIONS(1625), - [anon_sym_unsigned] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_case] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_goto] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1625), - [sym_number_literal] = ACTIONS(1625), - [sym_char_literal] = ACTIONS(1625), - [sym_string_literal] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1627), + [677] = { + [ts_builtin_sym_end] = ACTIONS(1638), + [anon_sym_POUNDinclude] = ACTIONS(1640), + [anon_sym_POUNDdefine] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_POUNDif] = ACTIONS(1640), + [anon_sym_POUNDendif] = ACTIONS(1640), + [anon_sym_POUNDifdef] = ACTIONS(1640), + [anon_sym_POUNDifndef] = ACTIONS(1640), + [anon_sym_POUNDelse] = ACTIONS(1640), + [sym_preproc_directive] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_extern] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_typedef] = ACTIONS(1640), + [anon_sym_auto] = ACTIONS(1640), + [anon_sym_register] = ACTIONS(1640), + [anon_sym_const] = ACTIONS(1640), + [anon_sym_restrict] = ACTIONS(1640), + [anon_sym_volatile] = ACTIONS(1640), + [sym_function_specifier] = ACTIONS(1640), + [anon_sym_unsigned] = ACTIONS(1640), + [anon_sym_long] = ACTIONS(1640), + [anon_sym_short] = ACTIONS(1640), + [anon_sym_enum] = ACTIONS(1640), + [anon_sym_struct] = ACTIONS(1640), + [anon_sym_union] = ACTIONS(1640), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_else] = ACTIONS(1640), + [anon_sym_switch] = ACTIONS(1640), + [anon_sym_case] = ACTIONS(1640), + [anon_sym_default] = ACTIONS(1640), + [anon_sym_while] = ACTIONS(1640), + [anon_sym_do] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1640), + [anon_sym_break] = ACTIONS(1640), + [anon_sym_continue] = ACTIONS(1640), + [anon_sym_goto] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DASH_DASH] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1638), + [anon_sym_sizeof] = ACTIONS(1640), + [sym_number_literal] = ACTIONS(1640), + [sym_char_literal] = ACTIONS(1640), + [sym_string_literal] = ACTIONS(1638), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(123), }, - [674] = { + [678] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -36151,17 +36321,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [675] = { + [679] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1619), + [anon_sym_COLON] = ACTIONS(1634), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -36196,17 +36366,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [676] = { - [sym_declaration] = STATE(677), - [sym__declaration_specifiers] = STATE(505), + [680] = { + [sym_declaration] = STATE(681), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(678), + [sym__expression] = STATE(682), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -36228,7 +36398,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1646), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -36256,11 +36426,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [677] = { - [sym__expression] = STATE(692), + [681] = { + [sym__expression] = STATE(696), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -36279,7 +36449,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -36295,49 +36465,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [678] = { + [682] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [679] = { - [sym__expression] = STATE(681), + [683] = { + [sym__expression] = STATE(685), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -36356,7 +36526,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1652), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -36372,8 +36542,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [680] = { - [sym__expression] = STATE(689), + [684] = { + [sym__expression] = STATE(693), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -36392,7 +36562,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -36408,49 +36578,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [681] = { + [685] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [682] = { - [sym__expression] = STATE(684), + [686] = { + [sym__expression] = STATE(688), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -36469,7 +36639,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1658), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -36485,9 +36655,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [683] = { + [687] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -36545,15 +36715,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [684] = { + [688] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(686), + [aux_sym_for_statement_repeat1] = STATE(690), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1660), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -36591,9 +36761,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [685] = { + [689] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -36651,17 +36821,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [686] = { + [690] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1662), [sym_comment] = ACTIONS(123), }, - [687] = { + [691] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -36719,12 +36889,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [688] = { + [692] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -36782,15 +36952,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [689] = { + [693] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(690), + [aux_sym_for_statement_repeat1] = STATE(694), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1658), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -36828,13 +36998,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [690] = { + [694] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1660), [sym_comment] = ACTIONS(123), }, - [691] = { - [sym__expression] = STATE(694), + [695] = { + [sym__expression] = STATE(698), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -36853,7 +37023,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -36869,50 +37039,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [692] = { + [696] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [693] = { + [697] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -36970,15 +37140,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [694] = { + [698] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(695), + [aux_sym_for_statement_repeat1] = STATE(699), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -37016,13 +37186,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [695] = { + [699] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1658), [sym_comment] = ACTIONS(123), }, - [696] = { - [sym__expression] = STATE(697), + [700] = { + [sym__expression] = STATE(701), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -37040,66 +37210,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [697] = { + [701] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [698] = { + [702] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -37157,12 +37327,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [699] = { + [703] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -37220,16 +37390,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [700] = { + [704] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1653), + [anon_sym_COLON] = ACTIONS(1668), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -37264,9 +37434,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [701] = { + [705] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -37324,11 +37494,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [702] = { - [sym__expression] = STATE(703), + [706] = { + [sym__expression] = STATE(707), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -37346,66 +37516,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [703] = { + [707] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [704] = { + [708] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -37463,11 +37633,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [705] = { - [sym__expression] = STATE(706), + [709] = { + [sym__expression] = STATE(710), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -37485,66 +37655,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [706] = { + [710] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [707] = { + [711] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(715), + [sym__statement] = STATE(719), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -37580,13 +37750,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -37602,19 +37772,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [708] = { - [anon_sym_LPAREN] = ACTIONS(1673), + [712] = { + [anon_sym_LPAREN] = ACTIONS(1688), [sym_comment] = ACTIONS(123), }, - [709] = { - [anon_sym_LPAREN] = ACTIONS(1675), + [713] = { + [anon_sym_LPAREN] = ACTIONS(1690), [sym_comment] = ACTIONS(123), }, - [710] = { - [sym__expression] = STATE(742), + [714] = { + [sym__expression] = STATE(746), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -37648,26 +37818,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [711] = { - [anon_sym_COLON] = ACTIONS(1677), + [715] = { + [anon_sym_COLON] = ACTIONS(1692), [sym_comment] = ACTIONS(123), }, - [712] = { - [anon_sym_LPAREN] = ACTIONS(1679), + [716] = { + [anon_sym_LPAREN] = ACTIONS(1694), [sym_comment] = ACTIONS(123), }, - [713] = { - [anon_sym_LPAREN] = ACTIONS(1681), + [717] = { + [anon_sym_LPAREN] = ACTIONS(1696), [sym_comment] = ACTIONS(123), }, - [714] = { + [718] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1698), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -37702,62 +37872,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [715] = { - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [719] = { + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [716] = { + [720] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -37815,12 +37985,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1644), [sym_comment] = ACTIONS(123), }, - [717] = { + [721] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -37856,13 +38026,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -37878,20 +38048,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [718] = { - [sym_declaration] = STATE(719), - [sym__declaration_specifiers] = STATE(505), + [722] = { + [sym_declaration] = STATE(723), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(720), + [sym__expression] = STATE(724), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -37913,7 +38083,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1706), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -37941,11 +38111,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [719] = { - [sym__expression] = STATE(734), + [723] = { + [sym__expression] = STATE(738), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -37964,7 +38134,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1708), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -37980,49 +38150,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [720] = { + [724] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [721] = { - [sym__expression] = STATE(723), + [725] = { + [sym__expression] = STATE(727), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -38041,7 +38211,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1712), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -38057,8 +38227,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [722] = { - [sym__expression] = STATE(731), + [726] = { + [sym__expression] = STATE(735), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -38077,7 +38247,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1714), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -38093,49 +38263,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [723] = { + [727] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [724] = { - [sym__expression] = STATE(726), + [728] = { + [sym__expression] = STATE(730), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -38154,7 +38324,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1718), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -38170,9 +38340,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [725] = { + [729] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38208,13 +38378,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -38230,15 +38400,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [726] = { + [730] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(728), + [aux_sym_for_statement_repeat1] = STATE(732), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1720), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -38276,9 +38446,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [727] = { + [731] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38314,13 +38484,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -38336,17 +38506,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [728] = { + [732] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1722), [sym_comment] = ACTIONS(123), }, - [729] = { + [733] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38382,13 +38552,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -38404,12 +38574,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [730] = { + [734] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38445,13 +38615,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -38467,15 +38637,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [731] = { + [735] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(732), + [aux_sym_for_statement_repeat1] = STATE(736), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1718), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -38513,13 +38683,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [732] = { + [736] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1720), [sym_comment] = ACTIONS(123), }, - [733] = { - [sym__expression] = STATE(736), + [737] = { + [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -38538,7 +38708,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1724), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -38554,50 +38724,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [734] = { + [738] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [735] = { + [739] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38633,13 +38803,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -38655,15 +38825,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [736] = { + [740] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(737), + [aux_sym_for_statement_repeat1] = STATE(741), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1714), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -38701,13 +38871,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [737] = { + [741] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1718), [sym_comment] = ACTIONS(123), }, - [738] = { - [sym__expression] = STATE(739), + [742] = { + [sym__expression] = STATE(743), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -38725,66 +38895,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [739] = { + [743] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [740] = { + [744] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38820,13 +38990,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -38842,12 +39012,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [741] = { + [745] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38883,13 +39053,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -38905,16 +39075,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [742] = { + [746] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1728), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -38949,9 +39119,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [743] = { + [747] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -38987,13 +39157,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -39009,11 +39179,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [744] = { - [sym__expression] = STATE(745), + [748] = { + [sym__expression] = STATE(749), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -39031,66 +39201,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [745] = { + [749] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [746] = { + [750] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -39126,13 +39296,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -39148,11 +39318,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [747] = { - [sym__expression] = STATE(748), + [751] = { + [sym__expression] = STATE(752), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -39170,66 +39340,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [748] = { + [752] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [749] = { + [753] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(750), + [sym__statement] = STATE(754), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -39265,13 +39435,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -39287,65 +39457,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [750] = { - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [754] = { + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [751] = { + [755] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -39381,13 +39551,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1684), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -39403,17 +39573,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1686), [sym_comment] = ACTIONS(123), }, - [752] = { - [sym_function_definition] = STATE(754), - [sym_declaration] = STATE(754), - [sym__declaration_specifiers] = STATE(755), - [sym_declaration_list] = STATE(754), + [756] = { + [sym_function_definition] = STATE(758), + [sym_declaration] = STATE(758), + [sym__declaration_specifiers] = STATE(759), + [sym_declaration_list] = STATE(758), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(756), + [sym__type_specifier] = STATE(760), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -39422,7 +39592,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_extern] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1736), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), [anon_sym_auto] = ACTIONS(147), @@ -39440,7 +39610,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [753] = { + [757] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -39495,7 +39665,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(759), + [aux_sym_translation_unit_repeat1] = STATE(763), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_POUNDinclude] = ACTIONS(127), @@ -39508,7 +39678,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1738), [anon_sym_STAR] = ACTIONS(145), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -39549,63 +39719,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(271), [sym_comment] = ACTIONS(123), }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(1725), - [anon_sym_POUNDinclude] = ACTIONS(1727), - [anon_sym_POUNDdefine] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_POUNDif] = ACTIONS(1727), - [anon_sym_POUNDendif] = ACTIONS(1727), - [anon_sym_POUNDifdef] = ACTIONS(1727), - [anon_sym_POUNDifndef] = ACTIONS(1727), - [anon_sym_POUNDelse] = ACTIONS(1727), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1727), - [anon_sym_auto] = ACTIONS(1727), - [anon_sym_register] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_restrict] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [sym_function_specifier] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_switch] = ACTIONS(1727), - [anon_sym_case] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_do] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_goto] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_sizeof] = ACTIONS(1727), - [sym_number_literal] = ACTIONS(1727), - [sym_char_literal] = ACTIONS(1727), - [sym_string_literal] = ACTIONS(1725), - [sym_identifier] = ACTIONS(1729), + [758] = { + [ts_builtin_sym_end] = ACTIONS(1740), + [anon_sym_POUNDinclude] = ACTIONS(1742), + [anon_sym_POUNDdefine] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_POUNDif] = ACTIONS(1742), + [anon_sym_POUNDendif] = ACTIONS(1742), + [anon_sym_POUNDifdef] = ACTIONS(1742), + [anon_sym_POUNDifndef] = ACTIONS(1742), + [anon_sym_POUNDelse] = ACTIONS(1742), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1742), + [anon_sym_auto] = ACTIONS(1742), + [anon_sym_register] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_restrict] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1742), + [sym_function_specifier] = ACTIONS(1742), + [anon_sym_unsigned] = ACTIONS(1742), + [anon_sym_long] = ACTIONS(1742), + [anon_sym_short] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [anon_sym_struct] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1742), + [anon_sym_case] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_goto] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_sizeof] = ACTIONS(1742), + [sym_number_literal] = ACTIONS(1742), + [sym_char_literal] = ACTIONS(1742), + [sym_string_literal] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1744), [sym_comment] = ACTIONS(123), }, - [755] = { - [sym__type_specifier] = STATE(757), + [759] = { + [sym__type_specifier] = STATE(761), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -39621,84 +39791,84 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [756] = { - [sym__declarator] = STATE(465), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(466), + [760] = { + [sym__declarator] = STATE(469), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(470), [anon_sym_LPAREN] = ACTIONS(417), [anon_sym_STAR] = ACTIONS(421), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [757] = { - [sym__declarator] = STATE(483), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(484), + [761] = { + [sym__declarator] = STATE(487), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(488), [anon_sym_LPAREN] = ACTIONS(417), [anon_sym_STAR] = ACTIONS(421), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_POUNDinclude] = ACTIONS(1733), - [anon_sym_POUNDdefine] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_POUNDif] = ACTIONS(1733), - [anon_sym_POUNDendif] = ACTIONS(1733), - [anon_sym_POUNDifdef] = ACTIONS(1733), - [anon_sym_POUNDifndef] = ACTIONS(1733), - [anon_sym_POUNDelse] = ACTIONS(1733), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_typedef] = ACTIONS(1733), - [anon_sym_auto] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_restrict] = ACTIONS(1733), - [anon_sym_volatile] = ACTIONS(1733), - [sym_function_specifier] = ACTIONS(1733), - [anon_sym_unsigned] = ACTIONS(1733), - [anon_sym_long] = ACTIONS(1733), - [anon_sym_short] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_union] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_switch] = ACTIONS(1733), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_goto] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_sizeof] = ACTIONS(1733), - [sym_number_literal] = ACTIONS(1733), - [sym_char_literal] = ACTIONS(1733), - [sym_string_literal] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1735), + [762] = { + [ts_builtin_sym_end] = ACTIONS(1746), + [anon_sym_POUNDinclude] = ACTIONS(1748), + [anon_sym_POUNDdefine] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_POUNDif] = ACTIONS(1748), + [anon_sym_POUNDendif] = ACTIONS(1748), + [anon_sym_POUNDifdef] = ACTIONS(1748), + [anon_sym_POUNDifndef] = ACTIONS(1748), + [anon_sym_POUNDelse] = ACTIONS(1748), + [sym_preproc_directive] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_typedef] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [sym_function_specifier] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_switch] = ACTIONS(1748), + [anon_sym_case] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_do] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_sizeof] = ACTIONS(1748), + [sym_number_literal] = ACTIONS(1748), + [sym_char_literal] = ACTIONS(1748), + [sym_string_literal] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1750), [sym_comment] = ACTIONS(123), }, - [759] = { + [763] = { [sym__top_level_item] = STATE(53), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -39765,7 +39935,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1752), [anon_sym_STAR] = ACTIONS(145), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -39806,117 +39976,117 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(271), [sym_comment] = ACTIONS(123), }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [anon_sym_POUNDinclude] = ACTIONS(1741), - [anon_sym_POUNDdefine] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_POUNDif] = ACTIONS(1741), - [anon_sym_POUNDendif] = ACTIONS(1741), - [anon_sym_POUNDifdef] = ACTIONS(1741), - [anon_sym_POUNDifndef] = ACTIONS(1741), - [anon_sym_POUNDelse] = ACTIONS(1741), - [sym_preproc_directive] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_typedef] = ACTIONS(1741), - [anon_sym_auto] = ACTIONS(1741), - [anon_sym_register] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_restrict] = ACTIONS(1741), - [anon_sym_volatile] = ACTIONS(1741), - [sym_function_specifier] = ACTIONS(1741), - [anon_sym_unsigned] = ACTIONS(1741), - [anon_sym_long] = ACTIONS(1741), - [anon_sym_short] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_union] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_goto] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_sizeof] = ACTIONS(1741), - [sym_number_literal] = ACTIONS(1741), - [sym_char_literal] = ACTIONS(1741), - [sym_string_literal] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1743), + [764] = { + [ts_builtin_sym_end] = ACTIONS(1754), + [anon_sym_POUNDinclude] = ACTIONS(1756), + [anon_sym_POUNDdefine] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_POUNDif] = ACTIONS(1756), + [anon_sym_POUNDendif] = ACTIONS(1756), + [anon_sym_POUNDifdef] = ACTIONS(1756), + [anon_sym_POUNDifndef] = ACTIONS(1756), + [anon_sym_POUNDelse] = ACTIONS(1756), + [sym_preproc_directive] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_typedef] = ACTIONS(1756), + [anon_sym_auto] = ACTIONS(1756), + [anon_sym_register] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_restrict] = ACTIONS(1756), + [anon_sym_volatile] = ACTIONS(1756), + [sym_function_specifier] = ACTIONS(1756), + [anon_sym_unsigned] = ACTIONS(1756), + [anon_sym_long] = ACTIONS(1756), + [anon_sym_short] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_sizeof] = ACTIONS(1756), + [sym_number_literal] = ACTIONS(1756), + [sym_char_literal] = ACTIONS(1756), + [sym_string_literal] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1758), [sym_comment] = ACTIONS(123), }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(1745), - [anon_sym_POUNDinclude] = ACTIONS(1747), - [anon_sym_POUNDdefine] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_POUNDif] = ACTIONS(1747), - [anon_sym_POUNDendif] = ACTIONS(1747), - [anon_sym_POUNDifdef] = ACTIONS(1747), - [anon_sym_POUNDifndef] = ACTIONS(1747), - [anon_sym_POUNDelse] = ACTIONS(1747), - [sym_preproc_directive] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_typedef] = ACTIONS(1747), - [anon_sym_auto] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_restrict] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [sym_function_specifier] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_switch] = ACTIONS(1747), - [anon_sym_case] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_goto] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1745), - [anon_sym_sizeof] = ACTIONS(1747), - [sym_number_literal] = ACTIONS(1747), - [sym_char_literal] = ACTIONS(1747), - [sym_string_literal] = ACTIONS(1745), - [sym_identifier] = ACTIONS(1749), + [765] = { + [ts_builtin_sym_end] = ACTIONS(1760), + [anon_sym_POUNDinclude] = ACTIONS(1762), + [anon_sym_POUNDdefine] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_POUNDif] = ACTIONS(1762), + [anon_sym_POUNDendif] = ACTIONS(1762), + [anon_sym_POUNDifdef] = ACTIONS(1762), + [anon_sym_POUNDifndef] = ACTIONS(1762), + [anon_sym_POUNDelse] = ACTIONS(1762), + [sym_preproc_directive] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_auto] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_restrict] = ACTIONS(1762), + [anon_sym_volatile] = ACTIONS(1762), + [sym_function_specifier] = ACTIONS(1762), + [anon_sym_unsigned] = ACTIONS(1762), + [anon_sym_long] = ACTIONS(1762), + [anon_sym_short] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_switch] = ACTIONS(1762), + [anon_sym_case] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_goto] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1760), + [anon_sym_sizeof] = ACTIONS(1762), + [sym_number_literal] = ACTIONS(1762), + [sym_char_literal] = ACTIONS(1762), + [sym_string_literal] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1764), [sym_comment] = ACTIONS(123), }, - [762] = { + [766] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -39925,7 +40095,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(772), + [sym_preproc_else] = STATE(776), [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym__declaration_specifiers] = STATE(41), @@ -39972,17 +40142,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(773), + [aux_sym_translation_unit_repeat1] = STATE(777), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(1751), + [anon_sym_POUNDendif] = ACTIONS(1766), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), - [anon_sym_POUNDelse] = ACTIONS(1753), + [anon_sym_POUNDelse] = ACTIONS(1768), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), @@ -40002,13 +40172,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -40024,65 +40194,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1782), [sym_comment] = ACTIONS(123), }, - [763] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [anon_sym_POUNDinclude] = ACTIONS(1771), - [anon_sym_POUNDdefine] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_POUNDif] = ACTIONS(1771), - [anon_sym_POUNDendif] = ACTIONS(1771), - [anon_sym_POUNDifdef] = ACTIONS(1771), - [anon_sym_POUNDifndef] = ACTIONS(1771), - [anon_sym_POUNDelse] = ACTIONS(1771), - [sym_preproc_directive] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_typedef] = ACTIONS(1771), - [anon_sym_auto] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [sym_function_specifier] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_goto] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1771), - [sym_number_literal] = ACTIONS(1771), - [sym_char_literal] = ACTIONS(1771), - [sym_string_literal] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1773), + [767] = { + [ts_builtin_sym_end] = ACTIONS(1784), + [anon_sym_POUNDinclude] = ACTIONS(1786), + [anon_sym_POUNDdefine] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_POUNDif] = ACTIONS(1786), + [anon_sym_POUNDendif] = ACTIONS(1786), + [anon_sym_POUNDifdef] = ACTIONS(1786), + [anon_sym_POUNDifndef] = ACTIONS(1786), + [anon_sym_POUNDelse] = ACTIONS(1786), + [sym_preproc_directive] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_typedef] = ACTIONS(1786), + [anon_sym_auto] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [anon_sym_restrict] = ACTIONS(1786), + [anon_sym_volatile] = ACTIONS(1786), + [sym_function_specifier] = ACTIONS(1786), + [anon_sym_unsigned] = ACTIONS(1786), + [anon_sym_long] = ACTIONS(1786), + [anon_sym_short] = ACTIONS(1786), + [anon_sym_enum] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1786), + [anon_sym_union] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_switch] = ACTIONS(1786), + [anon_sym_case] = ACTIONS(1786), + [anon_sym_default] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_goto] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1784), + [anon_sym_sizeof] = ACTIONS(1786), + [sym_number_literal] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [sym_string_literal] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1788), [sym_comment] = ACTIONS(123), }, - [764] = { + [768] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -40137,14 +40307,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(862), + [aux_sym_translation_unit_repeat1] = STATE(866), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(1775), + [anon_sym_POUNDendif] = ACTIONS(1790), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), [sym_preproc_directive] = ACTIONS(137), @@ -40166,13 +40336,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -40188,19 +40358,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1804), [sym_comment] = ACTIONS(123), }, - [765] = { - [anon_sym_LPAREN] = ACTIONS(1791), + [769] = { + [anon_sym_LPAREN] = ACTIONS(1806), [sym_comment] = ACTIONS(123), }, - [766] = { - [anon_sym_LPAREN] = ACTIONS(1793), + [770] = { + [anon_sym_LPAREN] = ACTIONS(1808), [sym_comment] = ACTIONS(123), }, - [767] = { - [sym__expression] = STATE(803), + [771] = { + [sym__expression] = STATE(807), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -40234,26 +40404,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [768] = { - [anon_sym_COLON] = ACTIONS(1795), + [772] = { + [anon_sym_COLON] = ACTIONS(1810), [sym_comment] = ACTIONS(123), }, - [769] = { - [anon_sym_LPAREN] = ACTIONS(1797), + [773] = { + [anon_sym_LPAREN] = ACTIONS(1812), [sym_comment] = ACTIONS(123), }, - [770] = { - [anon_sym_LPAREN] = ACTIONS(1799), + [774] = { + [anon_sym_LPAREN] = ACTIONS(1814), [sym_comment] = ACTIONS(123), }, - [771] = { + [775] = { [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(377), [anon_sym_STAR] = ACTIONS(380), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_COLON] = ACTIONS(1816), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -40289,11 +40459,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [772] = { - [anon_sym_POUNDendif] = ACTIONS(1803), + [776] = { + [anon_sym_POUNDendif] = ACTIONS(1818), [sym_comment] = ACTIONS(123), }, - [773] = { + [777] = { [sym__top_level_item] = STATE(53), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -40302,7 +40472,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(775), + [sym_preproc_else] = STATE(779), [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym__declaration_specifiers] = STATE(41), @@ -40355,10 +40525,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(1805), + [anon_sym_POUNDendif] = ACTIONS(1820), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), - [anon_sym_POUNDelse] = ACTIONS(1753), + [anon_sym_POUNDelse] = ACTIONS(1768), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), @@ -40378,13 +40548,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -40400,126 +40570,126 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1782), [sym_comment] = ACTIONS(123), }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [anon_sym_POUNDinclude] = ACTIONS(1809), - [anon_sym_POUNDdefine] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_POUNDif] = ACTIONS(1809), - [anon_sym_POUNDendif] = ACTIONS(1809), - [anon_sym_POUNDifdef] = ACTIONS(1809), - [anon_sym_POUNDifndef] = ACTIONS(1809), - [anon_sym_POUNDelse] = ACTIONS(1809), - [sym_preproc_directive] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_typedef] = ACTIONS(1809), - [anon_sym_auto] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_restrict] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [sym_function_specifier] = ACTIONS(1809), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_sizeof] = ACTIONS(1809), - [sym_number_literal] = ACTIONS(1809), - [sym_char_literal] = ACTIONS(1809), - [sym_string_literal] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1811), + [778] = { + [ts_builtin_sym_end] = ACTIONS(1822), + [anon_sym_POUNDinclude] = ACTIONS(1824), + [anon_sym_POUNDdefine] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_POUNDif] = ACTIONS(1824), + [anon_sym_POUNDendif] = ACTIONS(1824), + [anon_sym_POUNDifdef] = ACTIONS(1824), + [anon_sym_POUNDifndef] = ACTIONS(1824), + [anon_sym_POUNDelse] = ACTIONS(1824), + [sym_preproc_directive] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_typedef] = ACTIONS(1824), + [anon_sym_auto] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_restrict] = ACTIONS(1824), + [anon_sym_volatile] = ACTIONS(1824), + [sym_function_specifier] = ACTIONS(1824), + [anon_sym_unsigned] = ACTIONS(1824), + [anon_sym_long] = ACTIONS(1824), + [anon_sym_short] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_switch] = ACTIONS(1824), + [anon_sym_case] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_goto] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1824), + [sym_number_literal] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [sym_string_literal] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1826), [sym_comment] = ACTIONS(123), }, - [775] = { - [anon_sym_POUNDendif] = ACTIONS(1813), + [779] = { + [anon_sym_POUNDendif] = ACTIONS(1828), [sym_comment] = ACTIONS(123), }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [anon_sym_POUNDinclude] = ACTIONS(1817), - [anon_sym_POUNDdefine] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_POUNDif] = ACTIONS(1817), - [anon_sym_POUNDendif] = ACTIONS(1817), - [anon_sym_POUNDifdef] = ACTIONS(1817), - [anon_sym_POUNDifndef] = ACTIONS(1817), - [anon_sym_POUNDelse] = ACTIONS(1817), - [sym_preproc_directive] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_typedef] = ACTIONS(1817), - [anon_sym_auto] = ACTIONS(1817), - [anon_sym_register] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_restrict] = ACTIONS(1817), - [anon_sym_volatile] = ACTIONS(1817), - [sym_function_specifier] = ACTIONS(1817), - [anon_sym_unsigned] = ACTIONS(1817), - [anon_sym_long] = ACTIONS(1817), - [anon_sym_short] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_switch] = ACTIONS(1817), - [anon_sym_case] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_goto] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_sizeof] = ACTIONS(1817), - [sym_number_literal] = ACTIONS(1817), - [sym_char_literal] = ACTIONS(1817), - [sym_string_literal] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1819), + [780] = { + [ts_builtin_sym_end] = ACTIONS(1830), + [anon_sym_POUNDinclude] = ACTIONS(1832), + [anon_sym_POUNDdefine] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_POUNDif] = ACTIONS(1832), + [anon_sym_POUNDendif] = ACTIONS(1832), + [anon_sym_POUNDifdef] = ACTIONS(1832), + [anon_sym_POUNDifndef] = ACTIONS(1832), + [anon_sym_POUNDelse] = ACTIONS(1832), + [sym_preproc_directive] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_typedef] = ACTIONS(1832), + [anon_sym_auto] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_restrict] = ACTIONS(1832), + [anon_sym_volatile] = ACTIONS(1832), + [sym_function_specifier] = ACTIONS(1832), + [anon_sym_unsigned] = ACTIONS(1832), + [anon_sym_long] = ACTIONS(1832), + [anon_sym_short] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_goto] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_sizeof] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [sym_string_literal] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1834), [sym_comment] = ACTIONS(123), }, - [777] = { + [781] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -40555,13 +40725,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -40577,17 +40747,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [778] = { + [782] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_COLON] = ACTIONS(1816), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -40622,17 +40792,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [779] = { - [sym_declaration] = STATE(780), - [sym__declaration_specifiers] = STATE(505), + [783] = { + [sym_declaration] = STATE(784), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(781), + [sym__expression] = STATE(785), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -40654,7 +40824,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1838), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -40682,11 +40852,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [780] = { - [sym__expression] = STATE(795), + [784] = { + [sym__expression] = STATE(799), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -40705,7 +40875,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1840), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -40721,49 +40891,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [781] = { + [785] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [782] = { - [sym__expression] = STATE(784), + [786] = { + [sym__expression] = STATE(788), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -40782,7 +40952,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1844), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -40798,8 +40968,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [783] = { - [sym__expression] = STATE(792), + [787] = { + [sym__expression] = STATE(796), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -40818,7 +40988,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1846), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -40834,49 +41004,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [784] = { + [788] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [785] = { - [sym__expression] = STATE(787), + [789] = { + [sym__expression] = STATE(791), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -40895,7 +41065,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1850), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -40911,9 +41081,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [786] = { + [790] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -40949,13 +41119,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -40971,15 +41141,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [787] = { + [791] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(789), + [aux_sym_for_statement_repeat1] = STATE(793), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1852), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -41017,9 +41187,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [788] = { + [792] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41055,13 +41225,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41077,17 +41247,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [789] = { + [793] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1854), [sym_comment] = ACTIONS(123), }, - [790] = { + [794] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41123,13 +41293,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41145,12 +41315,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [791] = { + [795] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41186,13 +41356,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41208,15 +41378,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [792] = { + [796] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(793), + [aux_sym_for_statement_repeat1] = STATE(797), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1850), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -41254,13 +41424,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [793] = { + [797] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1852), [sym_comment] = ACTIONS(123), }, - [794] = { - [sym__expression] = STATE(797), + [798] = { + [sym__expression] = STATE(801), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -41279,7 +41449,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1856), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -41295,50 +41465,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [795] = { + [799] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [796] = { + [800] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41374,13 +41544,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41396,15 +41566,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [797] = { + [801] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(798), + [aux_sym_for_statement_repeat1] = STATE(802), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1846), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -41442,13 +41612,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [798] = { + [802] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1850), [sym_comment] = ACTIONS(123), }, - [799] = { - [sym__expression] = STATE(800), + [803] = { + [sym__expression] = STATE(804), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -41466,66 +41636,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [800] = { + [804] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [801] = { + [805] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41561,13 +41731,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41583,12 +41753,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [802] = { + [806] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41624,13 +41794,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41646,16 +41816,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [803] = { + [807] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1845), + [anon_sym_COLON] = ACTIONS(1860), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -41690,9 +41860,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [804] = { + [808] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41728,13 +41898,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41750,11 +41920,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [805] = { - [sym__expression] = STATE(806), + [809] = { + [sym__expression] = STATE(810), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -41772,66 +41942,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [806] = { + [810] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [807] = { + [811] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -41867,13 +42037,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -41889,11 +42059,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [808] = { - [sym__expression] = STATE(809), + [812] = { + [sym__expression] = STATE(813), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -41911,66 +42081,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [809] = { + [813] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [810] = { + [814] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(818), + [sym__statement] = STATE(822), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -42006,13 +42176,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -42028,19 +42198,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [811] = { - [anon_sym_LPAREN] = ACTIONS(1865), + [815] = { + [anon_sym_LPAREN] = ACTIONS(1880), [sym_comment] = ACTIONS(123), }, - [812] = { - [anon_sym_LPAREN] = ACTIONS(1867), + [816] = { + [anon_sym_LPAREN] = ACTIONS(1882), [sym_comment] = ACTIONS(123), }, - [813] = { - [sym__expression] = STATE(845), + [817] = { + [sym__expression] = STATE(849), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -42074,26 +42244,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [814] = { - [anon_sym_COLON] = ACTIONS(1869), + [818] = { + [anon_sym_COLON] = ACTIONS(1884), [sym_comment] = ACTIONS(123), }, - [815] = { - [anon_sym_LPAREN] = ACTIONS(1871), + [819] = { + [anon_sym_LPAREN] = ACTIONS(1886), [sym_comment] = ACTIONS(123), }, - [816] = { - [anon_sym_LPAREN] = ACTIONS(1873), + [820] = { + [anon_sym_LPAREN] = ACTIONS(1888), [sym_comment] = ACTIONS(123), }, - [817] = { + [821] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1875), + [anon_sym_COLON] = ACTIONS(1890), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -42128,63 +42298,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [818] = { - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDendif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [anon_sym_POUNDelse] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [822] = { + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDendif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [anon_sym_POUNDelse] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [819] = { + [823] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -42220,13 +42390,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -42242,12 +42412,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1836), [sym_comment] = ACTIONS(123), }, - [820] = { + [824] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -42283,13 +42453,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -42305,20 +42475,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [821] = { - [sym_declaration] = STATE(822), - [sym__declaration_specifiers] = STATE(505), + [825] = { + [sym_declaration] = STATE(826), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(823), + [sym__expression] = STATE(827), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -42340,7 +42510,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1894), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -42368,11 +42538,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [822] = { - [sym__expression] = STATE(837), + [826] = { + [sym__expression] = STATE(841), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -42391,7 +42561,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1896), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -42407,49 +42577,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [823] = { + [827] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [824] = { - [sym__expression] = STATE(826), + [828] = { + [sym__expression] = STATE(830), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -42468,7 +42638,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1900), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -42484,8 +42654,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [825] = { - [sym__expression] = STATE(834), + [829] = { + [sym__expression] = STATE(838), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -42504,7 +42674,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1902), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -42520,49 +42690,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [826] = { + [830] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [827] = { - [sym__expression] = STATE(829), + [831] = { + [sym__expression] = STATE(833), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -42581,7 +42751,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1906), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -42597,9 +42767,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [828] = { + [832] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -42635,13 +42805,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -42657,15 +42827,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [829] = { + [833] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(831), + [aux_sym_for_statement_repeat1] = STATE(835), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1908), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -42703,9 +42873,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [830] = { + [834] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -42741,13 +42911,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -42763,17 +42933,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [831] = { + [835] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1910), [sym_comment] = ACTIONS(123), }, - [832] = { + [836] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -42809,13 +42979,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -42831,12 +43001,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [833] = { + [837] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -42872,13 +43042,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -42894,15 +43064,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [834] = { + [838] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(835), + [aux_sym_for_statement_repeat1] = STATE(839), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1906), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -42940,13 +43110,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [835] = { + [839] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1908), [sym_comment] = ACTIONS(123), }, - [836] = { - [sym__expression] = STATE(839), + [840] = { + [sym__expression] = STATE(843), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -42965,7 +43135,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1912), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -42981,50 +43151,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [837] = { + [841] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [838] = { + [842] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -43060,13 +43230,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -43082,15 +43252,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [839] = { + [843] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(840), + [aux_sym_for_statement_repeat1] = STATE(844), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1902), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -43128,13 +43298,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [840] = { + [844] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1906), [sym_comment] = ACTIONS(123), }, - [841] = { - [sym__expression] = STATE(842), + [845] = { + [sym__expression] = STATE(846), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -43152,66 +43322,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [842] = { + [846] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [843] = { + [847] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -43247,13 +43417,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -43269,12 +43439,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [844] = { + [848] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -43310,13 +43480,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -43332,16 +43502,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [845] = { + [849] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1901), + [anon_sym_COLON] = ACTIONS(1916), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -43376,9 +43546,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [846] = { + [850] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -43414,13 +43584,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -43436,11 +43606,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [847] = { - [sym__expression] = STATE(848), + [851] = { + [sym__expression] = STATE(852), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -43458,66 +43628,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [848] = { + [852] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [849] = { + [853] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -43553,13 +43723,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -43575,11 +43745,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [850] = { - [sym__expression] = STATE(851), + [854] = { + [sym__expression] = STATE(855), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -43597,66 +43767,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [851] = { + [855] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [852] = { + [856] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(853), + [sym__statement] = STATE(857), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -43692,13 +43862,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -43714,66 +43884,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [853] = { - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDendif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [anon_sym_POUNDelse] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [857] = { + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDendif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [anon_sym_POUNDelse] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1922), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [854] = { + [858] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -43809,13 +43979,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1874), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1876), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -43831,19 +44001,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1878), [sym_comment] = ACTIONS(123), }, - [855] = { - [anon_sym_LPAREN] = ACTIONS(1909), + [859] = { + [anon_sym_LPAREN] = ACTIONS(1924), [sym_comment] = ACTIONS(123), }, - [856] = { - [anon_sym_LPAREN] = ACTIONS(1911), + [860] = { + [anon_sym_LPAREN] = ACTIONS(1926), [sym_comment] = ACTIONS(123), }, - [857] = { - [sym__expression] = STATE(889), + [861] = { + [sym__expression] = STATE(893), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -43877,26 +44047,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [858] = { - [anon_sym_COLON] = ACTIONS(1913), + [862] = { + [anon_sym_COLON] = ACTIONS(1928), [sym_comment] = ACTIONS(123), }, - [859] = { - [anon_sym_LPAREN] = ACTIONS(1915), + [863] = { + [anon_sym_LPAREN] = ACTIONS(1930), [sym_comment] = ACTIONS(123), }, - [860] = { - [anon_sym_LPAREN] = ACTIONS(1917), + [864] = { + [anon_sym_LPAREN] = ACTIONS(1932), [sym_comment] = ACTIONS(123), }, - [861] = { + [865] = { [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(377), [anon_sym_STAR] = ACTIONS(380), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1919), + [anon_sym_COLON] = ACTIONS(1934), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -43932,7 +44102,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [862] = { + [866] = { [sym__top_level_item] = STATE(53), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -43993,7 +44163,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(1921), + [anon_sym_POUNDendif] = ACTIONS(1936), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), [sym_preproc_directive] = ACTIONS(137), @@ -44015,13 +44185,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -44037,12 +44207,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1804), [sym_comment] = ACTIONS(123), }, - [863] = { + [867] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -44078,13 +44248,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -44100,17 +44270,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [864] = { + [868] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1919), + [anon_sym_COLON] = ACTIONS(1934), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -44145,17 +44315,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [865] = { - [sym_declaration] = STATE(866), - [sym__declaration_specifiers] = STATE(505), + [869] = { + [sym_declaration] = STATE(870), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(867), + [sym__expression] = STATE(871), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -44177,7 +44347,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1940), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -44205,11 +44375,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [866] = { - [sym__expression] = STATE(881), + [870] = { + [sym__expression] = STATE(885), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -44228,7 +44398,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -44244,49 +44414,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [867] = { + [871] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [868] = { - [sym__expression] = STATE(870), + [872] = { + [sym__expression] = STATE(874), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -44305,7 +44475,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1946), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -44321,8 +44491,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [869] = { - [sym__expression] = STATE(878), + [873] = { + [sym__expression] = STATE(882), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -44341,7 +44511,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1948), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -44357,49 +44527,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [870] = { + [874] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [871] = { - [sym__expression] = STATE(873), + [875] = { + [sym__expression] = STATE(877), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -44418,7 +44588,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_RPAREN] = ACTIONS(1952), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -44434,9 +44604,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [872] = { + [876] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -44472,13 +44642,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -44494,15 +44664,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [873] = { + [877] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(875), + [aux_sym_for_statement_repeat1] = STATE(879), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1939), + [anon_sym_RPAREN] = ACTIONS(1954), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -44540,9 +44710,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [874] = { + [878] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -44578,13 +44748,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -44600,80 +44770,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [875] = { + [879] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1941), - [sym_comment] = ACTIONS(123), - }, - [876] = { - [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(45), - [sym_comma_expression] = STATE(46), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_goto] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_sizeof] = ACTIONS(191), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [anon_sym_RPAREN] = ACTIONS(1956), [sym_comment] = ACTIONS(123), }, - [877] = { + [880] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -44709,13 +44816,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -44731,137 +44838,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), - [sym_comment] = ACTIONS(123), - }, - [878] = { - [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(879), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_QMARK] = ACTIONS(654), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_AMP_AMP] = ACTIONS(662), - [anon_sym_PIPE] = ACTIONS(664), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(467), - [anon_sym_DASH_GT] = ACTIONS(467), - [sym_comment] = ACTIONS(123), - }, - [879] = { - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1939), - [sym_comment] = ACTIONS(123), - }, - [880] = { - [sym__expression] = STATE(883), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_pointer_expression] = STATE(34), - [sym_logical_expression] = STATE(34), - [sym_bitwise_expression] = STATE(34), - [sym_equality_expression] = STATE(34), - [sym_relational_expression] = STATE(34), - [sym_shift_expression] = STATE(34), - [sym_math_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(34), - [sym_call_expression] = STATE(34), - [sym_field_expression] = STATE(34), - [sym_compound_literal_expression] = STATE(34), - [sym_parenthesized_expression] = STATE(34), - [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(207), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(215), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_sizeof] = ACTIONS(217), - [sym_number_literal] = ACTIONS(193), - [sym_char_literal] = ACTIONS(193), - [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(273), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, [881] = { - [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(467), - [anon_sym_DASH_GT] = ACTIONS(467), - [sym_comment] = ACTIONS(123), - }, - [882] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -44897,13 +44879,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -44919,15 +44901,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [883] = { + [882] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(884), + [aux_sym_for_statement_repeat1] = STATE(883), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1952), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -44965,13 +44947,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [884] = { + [883] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_RPAREN] = ACTIONS(1954), [sym_comment] = ACTIONS(123), }, - [885] = { - [sym__expression] = STATE(886), + [884] = { + [sym__expression] = STATE(887), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -44989,66 +44971,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_sizeof] = ACTIONS(217), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [886] = { + [885] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [887] = { + [886] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -45084,13 +45067,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -45106,12 +45089,136 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), + [sym_comment] = ACTIONS(123), + }, + [887] = { + [sym_argument_list] = STATE(72), + [aux_sym_for_statement_repeat1] = STATE(888), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(652), + [anon_sym_QMARK] = ACTIONS(654), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(664), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(467), + [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, [888] = { + [anon_sym_COMMA] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(1952), + [sym_comment] = ACTIONS(123), + }, + [889] = { + [sym__expression] = STATE(890), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(273), + [sym_comment] = ACTIONS(123), + }, + [890] = { + [sym_argument_list] = STATE(72), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(467), + [anon_sym_DASH_GT] = ACTIONS(467), + [sym_comment] = ACTIONS(123), + }, + [891] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -45147,13 +45254,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -45169,16 +45276,79 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [889] = { + [892] = { + [sym_compound_statement] = STATE(42), + [sym__statement] = STATE(612), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(45), + [sym_comma_expression] = STATE(46), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_pointer_expression] = STATE(34), + [sym_logical_expression] = STATE(34), + [sym_bitwise_expression] = STATE(34), + [sym_equality_expression] = STATE(34), + [sym_relational_expression] = STATE(34), + [sym_shift_expression] = STATE(34), + [sym_math_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(34), + [sym_call_expression] = STATE(34), + [sym_field_expression] = STATE(34), + [sym_compound_literal_expression] = STATE(34), + [sym_parenthesized_expression] = STATE(34), + [sym_concatenated_string] = STATE(34), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(171), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(175), + [anon_sym_break] = ACTIONS(177), + [anon_sym_continue] = ACTIONS(179), + [anon_sym_goto] = ACTIONS(181), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(187), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_sizeof] = ACTIONS(191), + [sym_number_literal] = ACTIONS(193), + [sym_char_literal] = ACTIONS(193), + [sym_string_literal] = ACTIONS(195), + [sym_identifier] = ACTIONS(1938), + [sym_comment] = ACTIONS(123), + }, + [893] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1962), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -45213,9 +45383,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [890] = { + [894] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -45251,13 +45421,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -45273,11 +45443,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [891] = { - [sym__expression] = STATE(892), + [895] = { + [sym__expression] = STATE(896), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -45295,66 +45465,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [892] = { + [896] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [893] = { + [897] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -45390,13 +45560,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -45412,11 +45582,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [894] = { - [sym__expression] = STATE(895), + [898] = { + [sym__expression] = STATE(899), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -45434,66 +45604,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [895] = { + [899] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [896] = { + [900] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(904), + [sym__statement] = STATE(908), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -45529,13 +45699,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -45551,19 +45721,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [897] = { - [anon_sym_LPAREN] = ACTIONS(1967), + [901] = { + [anon_sym_LPAREN] = ACTIONS(1982), [sym_comment] = ACTIONS(123), }, - [898] = { - [anon_sym_LPAREN] = ACTIONS(1969), + [902] = { + [anon_sym_LPAREN] = ACTIONS(1984), [sym_comment] = ACTIONS(123), }, - [899] = { - [sym__expression] = STATE(931), + [903] = { + [sym__expression] = STATE(935), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -45597,26 +45767,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [900] = { - [anon_sym_COLON] = ACTIONS(1971), + [904] = { + [anon_sym_COLON] = ACTIONS(1986), [sym_comment] = ACTIONS(123), }, - [901] = { - [anon_sym_LPAREN] = ACTIONS(1973), + [905] = { + [anon_sym_LPAREN] = ACTIONS(1988), [sym_comment] = ACTIONS(123), }, - [902] = { - [anon_sym_LPAREN] = ACTIONS(1975), + [906] = { + [anon_sym_LPAREN] = ACTIONS(1990), [sym_comment] = ACTIONS(123), }, - [903] = { + [907] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(1977), + [anon_sym_COLON] = ACTIONS(1992), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -45651,62 +45821,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [904] = { - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDendif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1979), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [908] = { + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDendif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1994), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [905] = { + [909] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -45742,13 +45912,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1802), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -45764,12 +45934,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1938), [sym_comment] = ACTIONS(123), }, - [906] = { + [910] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -45805,13 +45975,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -45827,20 +45997,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [907] = { - [sym_declaration] = STATE(908), - [sym__declaration_specifiers] = STATE(505), + [911] = { + [sym_declaration] = STATE(912), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(909), + [sym__expression] = STATE(913), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -45862,7 +46032,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1996), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -45890,11 +46060,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [908] = { - [sym__expression] = STATE(923), + [912] = { + [sym__expression] = STATE(927), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -45913,7 +46083,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1998), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -45929,49 +46099,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [909] = { + [913] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [910] = { - [sym__expression] = STATE(912), + [914] = { + [sym__expression] = STATE(916), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -45990,7 +46160,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(2002), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -46006,8 +46176,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [911] = { - [sym__expression] = STATE(920), + [915] = { + [sym__expression] = STATE(924), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -46026,7 +46196,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(2004), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -46042,49 +46212,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [912] = { + [916] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [913] = { - [sym__expression] = STATE(915), + [917] = { + [sym__expression] = STATE(919), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -46103,7 +46273,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(2008), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -46119,9 +46289,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [914] = { + [918] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46157,13 +46327,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46179,15 +46349,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [915] = { + [919] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(917), + [aux_sym_for_statement_repeat1] = STATE(921), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(2010), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -46225,9 +46395,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [916] = { + [920] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46263,13 +46433,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46285,17 +46455,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [917] = { + [921] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(2012), [sym_comment] = ACTIONS(123), }, - [918] = { + [922] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46331,13 +46501,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46353,12 +46523,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [919] = { + [923] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46394,13 +46564,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46416,15 +46586,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [920] = { + [924] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(921), + [aux_sym_for_statement_repeat1] = STATE(925), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(2008), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -46462,13 +46632,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [921] = { + [925] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(2010), [sym_comment] = ACTIONS(123), }, - [922] = { - [sym__expression] = STATE(925), + [926] = { + [sym__expression] = STATE(929), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -46487,7 +46657,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(2014), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -46503,50 +46673,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [923] = { + [927] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [924] = { + [928] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46582,13 +46752,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46604,15 +46774,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [925] = { + [929] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(926), + [aux_sym_for_statement_repeat1] = STATE(930), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(2004), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -46650,13 +46820,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [926] = { + [930] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(2008), [sym_comment] = ACTIONS(123), }, - [927] = { - [sym__expression] = STATE(928), + [931] = { + [sym__expression] = STATE(932), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -46674,66 +46844,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [928] = { + [932] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [929] = { + [933] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46769,13 +46939,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46791,12 +46961,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [930] = { + [934] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46832,13 +47002,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46854,16 +47024,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [931] = { + [935] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(2003), + [anon_sym_COLON] = ACTIONS(2018), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -46898,9 +47068,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [932] = { + [936] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -46936,13 +47106,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -46958,11 +47128,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [933] = { - [sym__expression] = STATE(934), + [937] = { + [sym__expression] = STATE(938), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -46980,66 +47150,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [934] = { + [938] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [935] = { + [939] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -47075,13 +47245,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -47097,11 +47267,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [936] = { - [sym__expression] = STATE(937), + [940] = { + [sym__expression] = STATE(941), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -47119,66 +47289,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [937] = { + [941] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [938] = { + [942] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(939), + [sym__statement] = STATE(943), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -47214,13 +47384,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -47236,65 +47406,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [939] = { - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDendif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [943] = { + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDendif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [940] = { + [944] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -47330,13 +47500,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_switch] = ACTIONS(1955), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1976), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1978), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -47352,18 +47522,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1980), [sym_comment] = ACTIONS(123), }, - [941] = { + [945] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1002), - [sym_comma_expression] = STATE(1003), + [sym__expression] = STATE(1006), + [sym_comma_expression] = STATE(1007), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -47380,7 +47550,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1019), + [sym_type_name] = STATE(1023), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -47410,25 +47580,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [942] = { - [sym__expression] = STATE(1018), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [946] = { + [sym__expression] = STATE(1022), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -47445,25 +47615,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [943] = { - [sym__expression] = STATE(1017), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [947] = { + [sym__expression] = STATE(1021), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -47480,25 +47650,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [944] = { - [sym__expression] = STATE(1016), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [948] = { + [sym__expression] = STATE(1020), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -47515,25 +47685,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [945] = { - [sym__expression] = STATE(1015), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [949] = { + [sym__expression] = STATE(1019), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -47550,26 +47720,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [946] = { - [sym__expression] = STATE(1001), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2011), + [950] = { + [sym__expression] = STATE(1005), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2026), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(225), @@ -47585,7 +47755,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [947] = { + [951] = { [anon_sym_LF] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(365), [anon_sym_COMMA] = ACTIONS(365), @@ -47631,8 +47801,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(365), [sym_comment] = ACTIONS(123), }, - [948] = { - [aux_sym_concatenated_string_repeat1] = STATE(998), + [952] = { + [aux_sym_concatenated_string_repeat1] = STATE(1002), [anon_sym_LF] = ACTIONS(365), [anon_sym_LPAREN] = ACTIONS(365), [anon_sym_COMMA] = ACTIONS(365), @@ -47676,10 +47846,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(365), [anon_sym_DOT] = ACTIONS(365), [anon_sym_DASH_GT] = ACTIONS(365), - [sym_string_literal] = ACTIONS(2013), + [sym_string_literal] = ACTIONS(2028), [sym_comment] = ACTIONS(123), }, - [949] = { + [953] = { [anon_sym_LF] = ACTIONS(375), [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), @@ -47725,48 +47895,48 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [950] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(2023), - [anon_sym_QMARK] = ACTIONS(2025), - [anon_sym_STAR_EQ] = ACTIONS(2027), - [anon_sym_SLASH_EQ] = ACTIONS(2027), - [anon_sym_PERCENT_EQ] = ACTIONS(2027), - [anon_sym_PLUS_EQ] = ACTIONS(2027), - [anon_sym_DASH_EQ] = ACTIONS(2027), - [anon_sym_LT_LT_EQ] = ACTIONS(2027), - [anon_sym_GT_GT_EQ] = ACTIONS(2027), - [anon_sym_AMP_EQ] = ACTIONS(2027), - [anon_sym_CARET_EQ] = ACTIONS(2027), - [anon_sym_PIPE_EQ] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_PIPE_PIPE] = ACTIONS(2031), - [anon_sym_AMP_AMP] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [954] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2040), + [anon_sym_STAR_EQ] = ACTIONS(2042), + [anon_sym_SLASH_EQ] = ACTIONS(2042), + [anon_sym_PERCENT_EQ] = ACTIONS(2042), + [anon_sym_PLUS_EQ] = ACTIONS(2042), + [anon_sym_DASH_EQ] = ACTIONS(2042), + [anon_sym_LT_LT_EQ] = ACTIONS(2042), + [anon_sym_GT_GT_EQ] = ACTIONS(2042), + [anon_sym_AMP_EQ] = ACTIONS(2042), + [anon_sym_CARET_EQ] = ACTIONS(2042), + [anon_sym_PIPE_EQ] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE_PIPE] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [951] = { + [955] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -47775,7 +47945,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(992), + [sym_preproc_else] = STATE(996), [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym__declaration_specifiers] = STATE(41), @@ -47822,17 +47992,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(993), + [aux_sym_translation_unit_repeat1] = STATE(997), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(2053), + [anon_sym_POUNDendif] = ACTIONS(2068), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), - [anon_sym_POUNDelse] = ACTIONS(1753), + [anon_sym_POUNDelse] = ACTIONS(1768), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), @@ -47852,13 +48022,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -47874,11 +48044,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1782), [sym_comment] = ACTIONS(123), }, - [952] = { - [sym__expression] = STATE(987), + [956] = { + [sym__expression] = STATE(991), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -47897,7 +48067,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2070), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -47913,25 +48083,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [953] = { - [sym__expression] = STATE(970), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [957] = { + [sym__expression] = STATE(974), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -47948,8 +48118,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [954] = { - [sym__expression] = STATE(984), + [958] = { + [sym__expression] = STATE(988), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -47983,25 +48153,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [955] = { - [sym__expression] = STATE(980), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [959] = { + [sym__expression] = STATE(984), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48018,8 +48188,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [956] = { - [sym__expression] = STATE(981), + [960] = { + [sym__expression] = STATE(985), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -48053,25 +48223,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [957] = { - [sym__expression] = STATE(979), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [961] = { + [sym__expression] = STATE(983), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48088,25 +48258,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [958] = { - [sym__expression] = STATE(978), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [962] = { + [sym__expression] = STATE(982), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48123,25 +48293,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [959] = { - [sym__expression] = STATE(977), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [963] = { + [sym__expression] = STATE(981), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48158,25 +48328,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [960] = { - [sym__expression] = STATE(976), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [964] = { + [sym__expression] = STATE(980), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48193,25 +48363,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [961] = { - [sym__expression] = STATE(975), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [965] = { + [sym__expression] = STATE(979), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48228,25 +48398,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [962] = { - [sym__expression] = STATE(974), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [966] = { + [sym__expression] = STATE(978), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48263,25 +48433,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [963] = { - [sym__expression] = STATE(973), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [967] = { + [sym__expression] = STATE(977), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48298,25 +48468,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [964] = { - [sym__expression] = STATE(972), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [968] = { + [sym__expression] = STATE(976), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48333,25 +48503,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [965] = { - [sym__expression] = STATE(971), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [969] = { + [sym__expression] = STATE(975), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -48368,7 +48538,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [966] = { + [970] = { [anon_sym_LF] = ACTIONS(526), [anon_sym_LPAREN] = ACTIONS(526), [anon_sym_COMMA] = ACTIONS(526), @@ -48414,11 +48584,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(526), [sym_comment] = ACTIONS(123), }, - [967] = { - [sym_identifier] = ACTIONS(2057), + [971] = { + [sym_identifier] = ACTIONS(2072), [sym_comment] = ACTIONS(123), }, - [968] = { + [972] = { [anon_sym_LF] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(532), [anon_sym_COMMA] = ACTIONS(532), @@ -48464,7 +48634,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(532), [sym_comment] = ACTIONS(123), }, - [969] = { + [973] = { [anon_sym_LF] = ACTIONS(536), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(536), @@ -48510,12 +48680,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(536), [sym_comment] = ACTIONS(123), }, - [970] = { - [sym_argument_list] = STATE(968), + [974] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2032), [anon_sym_STAR] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(542), [anon_sym_QMARK] = ACTIONS(540), [anon_sym_STAR_EQ] = ACTIONS(540), @@ -48545,18 +48715,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(542), [anon_sym_SLASH] = ACTIONS(542), [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [971] = { - [sym_argument_list] = STATE(968), + [975] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(542), [anon_sym_QMARK] = ACTIONS(540), [anon_sym_STAR_EQ] = ACTIONS(540), @@ -48584,20 +48754,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(542), [anon_sym_PLUS] = ACTIONS(542), [anon_sym_DASH] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [972] = { - [sym_argument_list] = STATE(968), + [976] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(546), [anon_sym_QMARK] = ACTIONS(544), [anon_sym_STAR_EQ] = ACTIONS(544), @@ -48623,22 +48793,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(544), [anon_sym_LT_LT] = ACTIONS(546), [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [973] = { - [sym_argument_list] = STATE(968), + [977] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(550), [anon_sym_QMARK] = ACTIONS(548), [anon_sym_STAR_EQ] = ACTIONS(548), @@ -48662,24 +48832,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(550), [anon_sym_LT_EQ] = ACTIONS(548), [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [974] = { - [sym_argument_list] = STATE(968), + [978] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(554), [anon_sym_QMARK] = ACTIONS(552), [anon_sym_STAR_EQ] = ACTIONS(552), @@ -48699,28 +48869,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(554), [anon_sym_EQ_EQ] = ACTIONS(552), [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [975] = { - [sym_argument_list] = STATE(968), + [979] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), [anon_sym_STAR_EQ] = ACTIONS(556), @@ -48733,35 +48903,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2044), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [976] = { - [sym_argument_list] = STATE(968), + [980] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), [anon_sym_STAR_EQ] = ACTIONS(556), @@ -48774,35 +48944,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(556), [anon_sym_CARET_EQ] = ACTIONS(556), [anon_sym_PIPE_EQ] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2044), [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [977] = { - [sym_argument_list] = STATE(968), + [981] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), [anon_sym_STAR_EQ] = ACTIONS(560), @@ -48815,35 +48985,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2044), [anon_sym_PIPE_PIPE] = ACTIONS(560), [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [978] = { - [sym_argument_list] = STATE(968), + [982] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(560), [anon_sym_STAR_EQ] = ACTIONS(560), @@ -48856,35 +49026,35 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(560), [anon_sym_CARET_EQ] = ACTIONS(560), [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2044), [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [979] = { - [sym_argument_list] = STATE(968), + [983] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(558), [anon_sym_QMARK] = ACTIONS(556), [anon_sym_STAR_EQ] = ACTIONS(556), @@ -48902,72 +49072,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(556), [anon_sym_PIPE] = ACTIONS(558), [anon_sym_CARET] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [980] = { - [sym_argument_list] = STATE(968), + [984] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(2038), [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(2027), - [anon_sym_SLASH_EQ] = ACTIONS(2027), - [anon_sym_PERCENT_EQ] = ACTIONS(2027), - [anon_sym_PLUS_EQ] = ACTIONS(2027), - [anon_sym_DASH_EQ] = ACTIONS(2027), - [anon_sym_LT_LT_EQ] = ACTIONS(2027), - [anon_sym_GT_GT_EQ] = ACTIONS(2027), - [anon_sym_AMP_EQ] = ACTIONS(2027), - [anon_sym_CARET_EQ] = ACTIONS(2027), - [anon_sym_PIPE_EQ] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_PIPE_PIPE] = ACTIONS(2031), - [anon_sym_AMP_AMP] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_STAR_EQ] = ACTIONS(2042), + [anon_sym_SLASH_EQ] = ACTIONS(2042), + [anon_sym_PERCENT_EQ] = ACTIONS(2042), + [anon_sym_PLUS_EQ] = ACTIONS(2042), + [anon_sym_DASH_EQ] = ACTIONS(2042), + [anon_sym_LT_LT_EQ] = ACTIONS(2042), + [anon_sym_GT_GT_EQ] = ACTIONS(2042), + [anon_sym_AMP_EQ] = ACTIONS(2042), + [anon_sym_CARET_EQ] = ACTIONS(2042), + [anon_sym_PIPE_EQ] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE_PIPE] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [981] = { + [985] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(2059), + [anon_sym_COLON] = ACTIONS(2074), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -49002,25 +49172,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [982] = { - [sym__expression] = STATE(983), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [986] = { + [sym__expression] = STATE(987), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), @@ -49037,53 +49207,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [983] = { - [sym_argument_list] = STATE(968), + [987] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(2023), - [anon_sym_QMARK] = ACTIONS(2025), - [anon_sym_STAR_EQ] = ACTIONS(2027), - [anon_sym_SLASH_EQ] = ACTIONS(2027), - [anon_sym_PERCENT_EQ] = ACTIONS(2027), - [anon_sym_PLUS_EQ] = ACTIONS(2027), - [anon_sym_DASH_EQ] = ACTIONS(2027), - [anon_sym_LT_LT_EQ] = ACTIONS(2027), - [anon_sym_GT_GT_EQ] = ACTIONS(2027), - [anon_sym_AMP_EQ] = ACTIONS(2027), - [anon_sym_CARET_EQ] = ACTIONS(2027), - [anon_sym_PIPE_EQ] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_PIPE_PIPE] = ACTIONS(2031), - [anon_sym_AMP_AMP] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2043), - [anon_sym_GT_EQ] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2040), + [anon_sym_STAR_EQ] = ACTIONS(2042), + [anon_sym_SLASH_EQ] = ACTIONS(2042), + [anon_sym_PERCENT_EQ] = ACTIONS(2042), + [anon_sym_PLUS_EQ] = ACTIONS(2042), + [anon_sym_DASH_EQ] = ACTIONS(2042), + [anon_sym_LT_LT_EQ] = ACTIONS(2042), + [anon_sym_GT_GT_EQ] = ACTIONS(2042), + [anon_sym_AMP_EQ] = ACTIONS(2042), + [anon_sym_CARET_EQ] = ACTIONS(2042), + [anon_sym_PIPE_EQ] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE_PIPE] = ACTIONS(2046), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2054), + [anon_sym_BANG_EQ] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2056), + [anon_sym_LT_EQ] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [984] = { + [988] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2076), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -49119,7 +49289,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [985] = { + [989] = { [anon_sym_LF] = ACTIONS(634), [anon_sym_LPAREN] = ACTIONS(634), [anon_sym_COMMA] = ACTIONS(634), @@ -49165,7 +49335,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(634), [sym_comment] = ACTIONS(123), }, - [986] = { + [990] = { [anon_sym_LF] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(640), [anon_sym_COMMA] = ACTIONS(640), @@ -49211,12 +49381,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(640), [sym_comment] = ACTIONS(123), }, - [987] = { + [991] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(989), + [aux_sym_for_statement_repeat1] = STATE(993), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2078), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -49254,7 +49424,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [988] = { + [992] = { [anon_sym_LF] = ACTIONS(678), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_COMMA] = ACTIONS(678), @@ -49300,12 +49470,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(678), [sym_comment] = ACTIONS(123), }, - [989] = { + [993] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2080), [sym_comment] = ACTIONS(123), }, - [990] = { + [994] = { [anon_sym_LF] = ACTIONS(686), [anon_sym_LPAREN] = ACTIONS(686), [anon_sym_COMMA] = ACTIONS(686), @@ -49351,66 +49521,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(686), [sym_comment] = ACTIONS(123), }, - [991] = { - [ts_builtin_sym_end] = ACTIONS(2067), - [anon_sym_POUNDinclude] = ACTIONS(2069), - [anon_sym_POUNDdefine] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_POUNDif] = ACTIONS(2069), - [anon_sym_POUNDendif] = ACTIONS(2069), - [anon_sym_POUNDifdef] = ACTIONS(2069), - [anon_sym_POUNDifndef] = ACTIONS(2069), - [anon_sym_POUNDelse] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2071), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_typedef] = ACTIONS(2069), - [anon_sym_auto] = ACTIONS(2069), - [anon_sym_register] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_restrict] = ACTIONS(2069), - [anon_sym_volatile] = ACTIONS(2069), - [sym_function_specifier] = ACTIONS(2069), - [anon_sym_unsigned] = ACTIONS(2069), - [anon_sym_long] = ACTIONS(2069), - [anon_sym_short] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_switch] = ACTIONS(2069), - [anon_sym_case] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [anon_sym_do] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_goto] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_sizeof] = ACTIONS(2069), - [sym_number_literal] = ACTIONS(2069), - [sym_char_literal] = ACTIONS(2069), - [sym_string_literal] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2071), + [995] = { + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_POUNDinclude] = ACTIONS(2084), + [anon_sym_POUNDdefine] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_POUNDif] = ACTIONS(2084), + [anon_sym_POUNDendif] = ACTIONS(2084), + [anon_sym_POUNDifdef] = ACTIONS(2084), + [anon_sym_POUNDifndef] = ACTIONS(2084), + [anon_sym_POUNDelse] = ACTIONS(2084), + [sym_preproc_directive] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [sym_function_specifier] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_TILDE] = ACTIONS(2082), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2082), + [anon_sym_PLUS_PLUS] = ACTIONS(2082), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2084), + [sym_char_literal] = ACTIONS(2084), + [sym_string_literal] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2086), [sym_comment] = ACTIONS(123), }, - [992] = { - [anon_sym_POUNDendif] = ACTIONS(2073), + [996] = { + [anon_sym_POUNDendif] = ACTIONS(2088), [sym_comment] = ACTIONS(123), }, - [993] = { + [997] = { [sym__top_level_item] = STATE(53), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -49419,7 +49589,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(995), + [sym_preproc_else] = STATE(999), [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym__declaration_specifiers] = STATE(41), @@ -49472,10 +49642,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(2075), + [anon_sym_POUNDendif] = ACTIONS(2090), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), - [anon_sym_POUNDelse] = ACTIONS(1753), + [anon_sym_POUNDelse] = ACTIONS(1768), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), @@ -49495,13 +49665,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -49517,124 +49687,124 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1782), [sym_comment] = ACTIONS(123), }, - [994] = { - [ts_builtin_sym_end] = ACTIONS(2077), - [anon_sym_POUNDinclude] = ACTIONS(2079), - [anon_sym_POUNDdefine] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_POUNDif] = ACTIONS(2079), - [anon_sym_POUNDendif] = ACTIONS(2079), - [anon_sym_POUNDifdef] = ACTIONS(2079), - [anon_sym_POUNDifndef] = ACTIONS(2079), - [anon_sym_POUNDelse] = ACTIONS(2079), - [sym_preproc_directive] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_typedef] = ACTIONS(2079), - [anon_sym_auto] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_restrict] = ACTIONS(2079), - [anon_sym_volatile] = ACTIONS(2079), - [sym_function_specifier] = ACTIONS(2079), - [anon_sym_unsigned] = ACTIONS(2079), - [anon_sym_long] = ACTIONS(2079), - [anon_sym_short] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_case] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_goto] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_sizeof] = ACTIONS(2079), - [sym_number_literal] = ACTIONS(2079), - [sym_char_literal] = ACTIONS(2079), - [sym_string_literal] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2081), + [998] = { + [ts_builtin_sym_end] = ACTIONS(2092), + [anon_sym_POUNDinclude] = ACTIONS(2094), + [anon_sym_POUNDdefine] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_POUNDif] = ACTIONS(2094), + [anon_sym_POUNDendif] = ACTIONS(2094), + [anon_sym_POUNDifdef] = ACTIONS(2094), + [anon_sym_POUNDifndef] = ACTIONS(2094), + [anon_sym_POUNDelse] = ACTIONS(2094), + [sym_preproc_directive] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_typedef] = ACTIONS(2094), + [anon_sym_auto] = ACTIONS(2094), + [anon_sym_register] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_restrict] = ACTIONS(2094), + [anon_sym_volatile] = ACTIONS(2094), + [sym_function_specifier] = ACTIONS(2094), + [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(2094), + [anon_sym_switch] = ACTIONS(2094), + [anon_sym_case] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_goto] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_DASH_DASH] = ACTIONS(2092), + [anon_sym_PLUS_PLUS] = ACTIONS(2092), + [anon_sym_sizeof] = ACTIONS(2094), + [sym_number_literal] = ACTIONS(2094), + [sym_char_literal] = ACTIONS(2094), + [sym_string_literal] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2096), [sym_comment] = ACTIONS(123), }, - [995] = { - [anon_sym_POUNDendif] = ACTIONS(2083), + [999] = { + [anon_sym_POUNDendif] = ACTIONS(2098), [sym_comment] = ACTIONS(123), }, - [996] = { - [ts_builtin_sym_end] = ACTIONS(2085), - [anon_sym_POUNDinclude] = ACTIONS(2087), - [anon_sym_POUNDdefine] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_POUNDif] = ACTIONS(2087), - [anon_sym_POUNDendif] = ACTIONS(2087), - [anon_sym_POUNDifdef] = ACTIONS(2087), - [anon_sym_POUNDifndef] = ACTIONS(2087), - [anon_sym_POUNDelse] = ACTIONS(2087), - [sym_preproc_directive] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_typedef] = ACTIONS(2087), - [anon_sym_auto] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_restrict] = ACTIONS(2087), - [anon_sym_volatile] = ACTIONS(2087), - [sym_function_specifier] = ACTIONS(2087), - [anon_sym_unsigned] = ACTIONS(2087), - [anon_sym_long] = ACTIONS(2087), - [anon_sym_short] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2087), - [anon_sym_union] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_switch] = ACTIONS(2087), - [anon_sym_case] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_goto] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_sizeof] = ACTIONS(2087), - [sym_number_literal] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2087), - [sym_string_literal] = ACTIONS(2085), - [sym_identifier] = ACTIONS(2089), + [1000] = { + [ts_builtin_sym_end] = ACTIONS(2100), + [anon_sym_POUNDinclude] = ACTIONS(2102), + [anon_sym_POUNDdefine] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_POUNDif] = ACTIONS(2102), + [anon_sym_POUNDendif] = ACTIONS(2102), + [anon_sym_POUNDifdef] = ACTIONS(2102), + [anon_sym_POUNDifndef] = ACTIONS(2102), + [anon_sym_POUNDelse] = ACTIONS(2102), + [sym_preproc_directive] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_typedef] = ACTIONS(2102), + [anon_sym_auto] = ACTIONS(2102), + [anon_sym_register] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_restrict] = ACTIONS(2102), + [anon_sym_volatile] = ACTIONS(2102), + [sym_function_specifier] = ACTIONS(2102), + [anon_sym_unsigned] = ACTIONS(2102), + [anon_sym_long] = ACTIONS(2102), + [anon_sym_short] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_switch] = ACTIONS(2102), + [anon_sym_case] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_goto] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2100), + [anon_sym_TILDE] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_DASH_DASH] = ACTIONS(2100), + [anon_sym_PLUS_PLUS] = ACTIONS(2100), + [anon_sym_sizeof] = ACTIONS(2102), + [sym_number_literal] = ACTIONS(2102), + [sym_char_literal] = ACTIONS(2102), + [sym_string_literal] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2104), [sym_comment] = ACTIONS(123), }, - [997] = { + [1001] = { [anon_sym_LF] = ACTIONS(696), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_COMMA] = ACTIONS(696), @@ -49681,7 +49851,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(696), [sym_comment] = ACTIONS(123), }, - [998] = { + [1002] = { [anon_sym_LF] = ACTIONS(700), [anon_sym_LPAREN] = ACTIONS(700), [anon_sym_COMMA] = ACTIONS(700), @@ -49725,10 +49895,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(700), [anon_sym_DOT] = ACTIONS(700), [anon_sym_DASH_GT] = ACTIONS(700), - [sym_string_literal] = ACTIONS(2091), + [sym_string_literal] = ACTIONS(2106), [sym_comment] = ACTIONS(123), }, - [999] = { + [1003] = { [anon_sym_LF] = ACTIONS(706), [anon_sym_LPAREN] = ACTIONS(706), [anon_sym_COMMA] = ACTIONS(706), @@ -49775,15 +49945,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(706), [sym_comment] = ACTIONS(123), }, - [1000] = { + [1004] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1002), - [sym_comma_expression] = STATE(1003), + [sym__expression] = STATE(1006), + [sym_comma_expression] = STATE(1007), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -49800,7 +49970,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1004), + [sym_type_name] = STATE(1008), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -49830,12 +50000,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1001] = { - [sym_argument_list] = STATE(968), + [1005] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), [anon_sym_EQ] = ACTIONS(712), [anon_sym_QMARK] = ACTIONS(710), [anon_sym_STAR_EQ] = ACTIONS(710), @@ -49859,23 +50029,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(712), [anon_sym_LT_EQ] = ACTIONS(710), [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PERCENT] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [1002] = { + [1006] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_RPAREN] = ACTIONS(2108), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -49913,83 +50083,83 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1003] = { - [anon_sym_RPAREN] = ACTIONS(2093), + [1007] = { + [anon_sym_RPAREN] = ACTIONS(2108), [sym_comment] = ACTIONS(123), }, - [1004] = { - [anon_sym_RPAREN] = ACTIONS(2095), + [1008] = { + [anon_sym_RPAREN] = ACTIONS(2110), [sym_comment] = ACTIONS(123), }, - [1005] = { - [sym__expression] = STATE(1007), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1008), - [sym_concatenated_string] = STATE(947), - [anon_sym_LF] = ACTIONS(993), + [1009] = { + [sym__expression] = STATE(1011), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_initializer_list] = STATE(1012), + [sym_concatenated_string] = STATE(951), + [anon_sym_LF] = ACTIONS(1008), [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), [anon_sym_PLUS] = ACTIONS(229), [anon_sym_DASH] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), [anon_sym_DASH_DASH] = ACTIONS(231), [anon_sym_PLUS_PLUS] = ACTIONS(231), [anon_sym_sizeof] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1006] = { - [sym__expression] = STATE(350), + [1010] = { + [sym__expression] = STATE(354), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -50006,171 +50176,171 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(351), - [sym__initializer_list_contents] = STATE(1010), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(355), + [sym__initializer_list_contents] = STATE(1014), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), - [aux_sym__initializer_list_contents_repeat1] = STATE(354), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1021), + [aux_sym__initializer_list_contents_repeat1] = STATE(358), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1036), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1007] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [1011] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_STAR_EQ] = ACTIONS(1038), + [anon_sym_SLASH_EQ] = ACTIONS(1038), + [anon_sym_PERCENT_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1038), + [anon_sym_DASH_EQ] = ACTIONS(1038), + [anon_sym_LT_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_GT_EQ] = ACTIONS(1038), + [anon_sym_AMP_EQ] = ACTIONS(1038), + [anon_sym_CARET_EQ] = ACTIONS(1038), + [anon_sym_PIPE_EQ] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_AMP_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_CARET] = ACTIONS(1040), + [anon_sym_EQ_EQ] = ACTIONS(1038), + [anon_sym_BANG_EQ] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_EQ] = ACTIONS(1038), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_SLASH] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [1008] = { - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1029), - [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(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DASH_GT] = ACTIONS(1027), + [1012] = { + [anon_sym_LF] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PERCENT_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_LT_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_GT_EQ] = ACTIONS(1042), + [anon_sym_AMP_EQ] = ACTIONS(1042), + [anon_sym_CARET_EQ] = ACTIONS(1042), + [anon_sym_PIPE_EQ] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DASH_GT] = ACTIONS(1042), [sym_comment] = ACTIONS(123), }, - [1009] = { - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1033), - [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(1031), - [anon_sym_DASH_GT] = ACTIONS(1031), + [1013] = { + [anon_sym_LF] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(1046), [sym_comment] = ACTIONS(123), }, - [1010] = { - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2107), + [1014] = { + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2122), [sym_comment] = ACTIONS(123), }, - [1011] = { - [sym__expression] = STATE(357), + [1015] = { + [sym__expression] = STATE(361), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -50187,358 +50357,358 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(358), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(362), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), - [aux_sym__initializer_list_contents_repeat1] = STATE(387), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1021), + [aux_sym__initializer_list_contents_repeat1] = STATE(391), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1036), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1012] = { - [anon_sym_LF] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(1085), - [anon_sym_EQ] = ACTIONS(1087), - [anon_sym_COLON] = ACTIONS(1085), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_STAR_EQ] = ACTIONS(1085), - [anon_sym_SLASH_EQ] = ACTIONS(1085), - [anon_sym_PERCENT_EQ] = ACTIONS(1085), - [anon_sym_PLUS_EQ] = ACTIONS(1085), - [anon_sym_DASH_EQ] = ACTIONS(1085), - [anon_sym_LT_LT_EQ] = ACTIONS(1085), - [anon_sym_GT_GT_EQ] = ACTIONS(1085), - [anon_sym_AMP_EQ] = ACTIONS(1085), - [anon_sym_CARET_EQ] = ACTIONS(1085), - [anon_sym_PIPE_EQ] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1087), - [anon_sym_GT_GT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_PERCENT] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_DASH_GT] = ACTIONS(1085), + [1016] = { + [anon_sym_LF] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_COMMA] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_COLON] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_STAR_EQ] = ACTIONS(1100), + [anon_sym_SLASH_EQ] = ACTIONS(1100), + [anon_sym_PERCENT_EQ] = ACTIONS(1100), + [anon_sym_PLUS_EQ] = ACTIONS(1100), + [anon_sym_DASH_EQ] = ACTIONS(1100), + [anon_sym_LT_LT_EQ] = ACTIONS(1100), + [anon_sym_GT_GT_EQ] = ACTIONS(1100), + [anon_sym_AMP_EQ] = ACTIONS(1100), + [anon_sym_CARET_EQ] = ACTIONS(1100), + [anon_sym_PIPE_EQ] = ACTIONS(1100), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1100), + [anon_sym_AMP_AMP] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_LT_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_DASH_GT] = ACTIONS(1100), [sym_comment] = ACTIONS(123), }, - [1013] = { - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(1089), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1089), - [anon_sym_EQ] = ACTIONS(1091), - [anon_sym_COLON] = ACTIONS(1089), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_STAR_EQ] = ACTIONS(1089), - [anon_sym_SLASH_EQ] = ACTIONS(1089), - [anon_sym_PERCENT_EQ] = ACTIONS(1089), - [anon_sym_PLUS_EQ] = ACTIONS(1089), - [anon_sym_DASH_EQ] = ACTIONS(1089), - [anon_sym_LT_LT_EQ] = ACTIONS(1089), - [anon_sym_GT_GT_EQ] = ACTIONS(1089), - [anon_sym_AMP_EQ] = ACTIONS(1089), - [anon_sym_CARET_EQ] = ACTIONS(1089), - [anon_sym_PIPE_EQ] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_EQ_EQ] = ACTIONS(1089), - [anon_sym_BANG_EQ] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_SLASH] = ACTIONS(1091), - [anon_sym_PERCENT] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_DASH_GT] = ACTIONS(1089), + [1017] = { + [anon_sym_LF] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_RBRACK] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1104), + [anon_sym_SLASH_EQ] = ACTIONS(1104), + [anon_sym_PERCENT_EQ] = ACTIONS(1104), + [anon_sym_PLUS_EQ] = ACTIONS(1104), + [anon_sym_DASH_EQ] = ACTIONS(1104), + [anon_sym_LT_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_GT_EQ] = ACTIONS(1104), + [anon_sym_AMP_EQ] = ACTIONS(1104), + [anon_sym_CARET_EQ] = ACTIONS(1104), + [anon_sym_PIPE_EQ] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1104), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_EQ_EQ] = ACTIONS(1104), + [anon_sym_BANG_EQ] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DASH_GT] = ACTIONS(1104), [sym_comment] = ACTIONS(123), }, - [1014] = { - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DASH_GT] = ACTIONS(1105), + [1018] = { + [anon_sym_LF] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1122), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_STAR_EQ] = ACTIONS(1120), + [anon_sym_SLASH_EQ] = ACTIONS(1120), + [anon_sym_PERCENT_EQ] = ACTIONS(1120), + [anon_sym_PLUS_EQ] = ACTIONS(1120), + [anon_sym_DASH_EQ] = ACTIONS(1120), + [anon_sym_LT_LT_EQ] = ACTIONS(1120), + [anon_sym_GT_GT_EQ] = ACTIONS(1120), + [anon_sym_AMP_EQ] = ACTIONS(1120), + [anon_sym_CARET_EQ] = ACTIONS(1120), + [anon_sym_PIPE_EQ] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_CARET] = ACTIONS(1122), + [anon_sym_EQ_EQ] = ACTIONS(1120), + [anon_sym_BANG_EQ] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_LT_EQ] = ACTIONS(1120), + [anon_sym_GT_EQ] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_PERCENT] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_DASH_GT] = ACTIONS(1120), [sym_comment] = ACTIONS(123), }, - [1015] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_QMARK] = ACTIONS(1111), - [anon_sym_STAR_EQ] = ACTIONS(1111), - [anon_sym_SLASH_EQ] = ACTIONS(1111), - [anon_sym_PERCENT_EQ] = ACTIONS(1111), - [anon_sym_PLUS_EQ] = ACTIONS(1111), - [anon_sym_DASH_EQ] = ACTIONS(1111), - [anon_sym_LT_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_GT_EQ] = ACTIONS(1111), - [anon_sym_AMP_EQ] = ACTIONS(1111), - [anon_sym_CARET_EQ] = ACTIONS(1111), - [anon_sym_PIPE_EQ] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_PIPE_PIPE] = ACTIONS(1111), - [anon_sym_AMP_AMP] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1113), - [anon_sym_GT_GT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_PERCENT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [1019] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1126), + [anon_sym_STAR_EQ] = ACTIONS(1126), + [anon_sym_SLASH_EQ] = ACTIONS(1126), + [anon_sym_PERCENT_EQ] = ACTIONS(1126), + [anon_sym_PLUS_EQ] = ACTIONS(1126), + [anon_sym_DASH_EQ] = ACTIONS(1126), + [anon_sym_LT_LT_EQ] = ACTIONS(1126), + [anon_sym_GT_GT_EQ] = ACTIONS(1126), + [anon_sym_AMP_EQ] = ACTIONS(1126), + [anon_sym_CARET_EQ] = ACTIONS(1126), + [anon_sym_PIPE_EQ] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(1126), + [anon_sym_BANG_EQ] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1128), + [anon_sym_LT_EQ] = ACTIONS(1126), + [anon_sym_GT_EQ] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1128), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_PERCENT] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [1016] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(1117), - [anon_sym_QMARK] = ACTIONS(1115), - [anon_sym_STAR_EQ] = ACTIONS(1115), - [anon_sym_SLASH_EQ] = ACTIONS(1115), - [anon_sym_PERCENT_EQ] = ACTIONS(1115), - [anon_sym_PLUS_EQ] = ACTIONS(1115), - [anon_sym_DASH_EQ] = ACTIONS(1115), - [anon_sym_LT_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_GT_EQ] = ACTIONS(1115), - [anon_sym_AMP_EQ] = ACTIONS(1115), - [anon_sym_CARET_EQ] = ACTIONS(1115), - [anon_sym_PIPE_EQ] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_PIPE_PIPE] = ACTIONS(1115), - [anon_sym_AMP_AMP] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_GT_GT] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [1020] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [1017] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_STAR_EQ] = ACTIONS(1119), - [anon_sym_SLASH_EQ] = ACTIONS(1119), - [anon_sym_PERCENT_EQ] = ACTIONS(1119), - [anon_sym_PLUS_EQ] = ACTIONS(1119), - [anon_sym_DASH_EQ] = ACTIONS(1119), - [anon_sym_LT_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_GT_EQ] = ACTIONS(1119), - [anon_sym_AMP_EQ] = ACTIONS(1119), - [anon_sym_CARET_EQ] = ACTIONS(1119), - [anon_sym_PIPE_EQ] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1119), - [anon_sym_AMP_AMP] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_LT_LT] = ACTIONS(1121), - [anon_sym_GT_GT] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [1021] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1134), + [anon_sym_STAR_EQ] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1134), + [anon_sym_PERCENT_EQ] = ACTIONS(1134), + [anon_sym_PLUS_EQ] = ACTIONS(1134), + [anon_sym_DASH_EQ] = ACTIONS(1134), + [anon_sym_LT_LT_EQ] = ACTIONS(1134), + [anon_sym_GT_GT_EQ] = ACTIONS(1134), + [anon_sym_AMP_EQ] = ACTIONS(1134), + [anon_sym_CARET_EQ] = ACTIONS(1134), + [anon_sym_PIPE_EQ] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1136), + [anon_sym_EQ_EQ] = ACTIONS(1134), + [anon_sym_BANG_EQ] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1136), + [anon_sym_LT_EQ] = ACTIONS(1134), + [anon_sym_GT_EQ] = ACTIONS(1134), + [anon_sym_LT_LT] = ACTIONS(1136), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [1018] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(1125), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_LT_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_GT_EQ] = ACTIONS(1123), - [anon_sym_AMP_EQ] = ACTIONS(1123), - [anon_sym_CARET_EQ] = ACTIONS(1123), - [anon_sym_PIPE_EQ] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_CARET] = ACTIONS(1125), - [anon_sym_EQ_EQ] = ACTIONS(1123), - [anon_sym_BANG_EQ] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1125), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_LT_LT] = ACTIONS(1125), - [anon_sym_GT_GT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(1125), - [anon_sym_PERCENT] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_DOT] = ACTIONS(2051), - [anon_sym_DASH_GT] = ACTIONS(2051), + [1022] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(1140), + [anon_sym_QMARK] = ACTIONS(1138), + [anon_sym_STAR_EQ] = ACTIONS(1138), + [anon_sym_SLASH_EQ] = ACTIONS(1138), + [anon_sym_PERCENT_EQ] = ACTIONS(1138), + [anon_sym_PLUS_EQ] = ACTIONS(1138), + [anon_sym_DASH_EQ] = ACTIONS(1138), + [anon_sym_LT_LT_EQ] = ACTIONS(1138), + [anon_sym_GT_GT_EQ] = ACTIONS(1138), + [anon_sym_AMP_EQ] = ACTIONS(1138), + [anon_sym_CARET_EQ] = ACTIONS(1138), + [anon_sym_PIPE_EQ] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_EQ_EQ] = ACTIONS(1138), + [anon_sym_BANG_EQ] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_LT_EQ] = ACTIONS(1138), + [anon_sym_GT_EQ] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_SLASH] = ACTIONS(1140), + [anon_sym_PERCENT] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DOT] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), [sym_comment] = ACTIONS(123), }, - [1019] = { - [anon_sym_RPAREN] = ACTIONS(2111), + [1023] = { + [anon_sym_RPAREN] = ACTIONS(2126), [sym_comment] = ACTIONS(123), }, - [1020] = { - [sym__expression] = STATE(1007), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1008), - [sym_concatenated_string] = STATE(947), + [1024] = { + [sym__expression] = STATE(1011), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_initializer_list] = STATE(1012), + [sym_concatenated_string] = STATE(951), [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2112), [anon_sym_STAR] = ACTIONS(223), [anon_sym_AMP] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(225), @@ -50554,359 +50724,359 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1021] = { - [sym_preproc_params] = STATE(1025), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(2113), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2117), - [sym_comment] = ACTIONS(123), - }, - [1022] = { - [sym_preproc_arg] = ACTIONS(2119), - [sym_comment] = ACTIONS(123), - }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(2121), - [anon_sym_POUNDinclude] = ACTIONS(2123), - [anon_sym_POUNDdefine] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_POUNDif] = ACTIONS(2123), - [anon_sym_POUNDendif] = ACTIONS(2123), - [anon_sym_POUNDifdef] = ACTIONS(2123), - [anon_sym_POUNDifndef] = ACTIONS(2123), - [anon_sym_POUNDelse] = ACTIONS(2123), - [sym_preproc_directive] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2123), - [anon_sym_typedef] = ACTIONS(2123), - [anon_sym_auto] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_restrict] = ACTIONS(2123), - [anon_sym_volatile] = ACTIONS(2123), - [sym_function_specifier] = ACTIONS(2123), - [anon_sym_unsigned] = ACTIONS(2123), - [anon_sym_long] = ACTIONS(2123), - [anon_sym_short] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_switch] = ACTIONS(2123), - [anon_sym_case] = ACTIONS(2123), - [anon_sym_default] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_do] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_goto] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2121), - [anon_sym_sizeof] = ACTIONS(2123), - [sym_number_literal] = ACTIONS(2123), - [sym_char_literal] = ACTIONS(2123), - [sym_string_literal] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2125), - [sym_comment] = ACTIONS(123), - }, - [1024] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2131), - [sym_comment] = ACTIONS(123), - }, [1025] = { - [anon_sym_LF] = ACTIONS(2133), - [sym_preproc_arg] = ACTIONS(2135), + [sym_preproc_params] = STATE(1029), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(2128), + [anon_sym_LF] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2132), [sym_comment] = ACTIONS(123), }, [1026] = { - [ts_builtin_sym_end] = ACTIONS(2137), - [anon_sym_POUNDinclude] = ACTIONS(2139), - [anon_sym_POUNDdefine] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_POUNDif] = ACTIONS(2139), - [anon_sym_POUNDendif] = ACTIONS(2139), - [anon_sym_POUNDifdef] = ACTIONS(2139), - [anon_sym_POUNDifndef] = ACTIONS(2139), - [anon_sym_POUNDelse] = ACTIONS(2139), - [sym_preproc_directive] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_extern] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_typedef] = ACTIONS(2139), - [anon_sym_auto] = ACTIONS(2139), - [anon_sym_register] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_restrict] = ACTIONS(2139), - [anon_sym_volatile] = ACTIONS(2139), - [sym_function_specifier] = ACTIONS(2139), - [anon_sym_unsigned] = ACTIONS(2139), - [anon_sym_long] = ACTIONS(2139), - [anon_sym_short] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_switch] = ACTIONS(2139), - [anon_sym_case] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_do] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_goto] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [sym_number_literal] = ACTIONS(2139), - [sym_char_literal] = ACTIONS(2139), - [sym_string_literal] = ACTIONS(2137), - [sym_identifier] = ACTIONS(2141), + [sym_preproc_arg] = ACTIONS(2134), [sym_comment] = ACTIONS(123), }, [1027] = { - [anon_sym_LF] = ACTIONS(2143), + [ts_builtin_sym_end] = ACTIONS(2136), + [anon_sym_POUNDinclude] = ACTIONS(2138), + [anon_sym_POUNDdefine] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_POUNDif] = ACTIONS(2138), + [anon_sym_POUNDendif] = ACTIONS(2138), + [anon_sym_POUNDifdef] = ACTIONS(2138), + [anon_sym_POUNDifndef] = ACTIONS(2138), + [anon_sym_POUNDelse] = ACTIONS(2138), + [sym_preproc_directive] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_auto] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [sym_function_specifier] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_goto] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_sizeof] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2138), + [sym_char_literal] = ACTIONS(2138), + [sym_string_literal] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2140), [sym_comment] = ACTIONS(123), }, [1028] = { - [ts_builtin_sym_end] = ACTIONS(2145), - [anon_sym_POUNDinclude] = ACTIONS(2147), - [anon_sym_POUNDdefine] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_POUNDif] = ACTIONS(2147), - [anon_sym_POUNDendif] = ACTIONS(2147), - [anon_sym_POUNDifdef] = ACTIONS(2147), - [anon_sym_POUNDifndef] = ACTIONS(2147), - [anon_sym_POUNDelse] = ACTIONS(2147), - [sym_preproc_directive] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_typedef] = ACTIONS(2147), - [anon_sym_auto] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_restrict] = ACTIONS(2147), - [anon_sym_volatile] = ACTIONS(2147), - [sym_function_specifier] = ACTIONS(2147), - [anon_sym_unsigned] = ACTIONS(2147), - [anon_sym_long] = ACTIONS(2147), - [anon_sym_short] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_switch] = ACTIONS(2147), - [anon_sym_case] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_goto] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_sizeof] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2147), - [sym_char_literal] = ACTIONS(2147), - [sym_string_literal] = ACTIONS(2145), - [sym_identifier] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2142), + [anon_sym_RPAREN] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), [sym_comment] = ACTIONS(123), }, [1029] = { - [aux_sym_preproc_params_repeat1] = STATE(1033), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2153), + [anon_sym_LF] = ACTIONS(2148), + [sym_preproc_arg] = ACTIONS(2150), [sym_comment] = ACTIONS(123), }, [1030] = { - [anon_sym_LF] = ACTIONS(2155), - [sym_preproc_arg] = ACTIONS(2157), + [ts_builtin_sym_end] = ACTIONS(2152), + [anon_sym_POUNDinclude] = ACTIONS(2154), + [anon_sym_POUNDdefine] = ACTIONS(2154), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_POUNDif] = ACTIONS(2154), + [anon_sym_POUNDendif] = ACTIONS(2154), + [anon_sym_POUNDifdef] = ACTIONS(2154), + [anon_sym_POUNDifndef] = ACTIONS(2154), + [anon_sym_POUNDelse] = ACTIONS(2154), + [sym_preproc_directive] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_typedef] = ACTIONS(2154), + [anon_sym_auto] = ACTIONS(2154), + [anon_sym_register] = ACTIONS(2154), + [anon_sym_const] = ACTIONS(2154), + [anon_sym_restrict] = ACTIONS(2154), + [anon_sym_volatile] = ACTIONS(2154), + [sym_function_specifier] = ACTIONS(2154), + [anon_sym_unsigned] = ACTIONS(2154), + [anon_sym_long] = ACTIONS(2154), + [anon_sym_short] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_struct] = ACTIONS(2154), + [anon_sym_union] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_switch] = ACTIONS(2154), + [anon_sym_case] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_do] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_goto] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_sizeof] = ACTIONS(2154), + [sym_number_literal] = ACTIONS(2154), + [sym_char_literal] = ACTIONS(2154), + [sym_string_literal] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2156), [sym_comment] = ACTIONS(123), }, [1031] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2161), + [anon_sym_LF] = ACTIONS(2158), [sym_comment] = ACTIONS(123), }, [1032] = { - [anon_sym_LF] = ACTIONS(2163), - [sym_preproc_arg] = ACTIONS(2165), + [ts_builtin_sym_end] = ACTIONS(2160), + [anon_sym_POUNDinclude] = ACTIONS(2162), + [anon_sym_POUNDdefine] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_POUNDif] = ACTIONS(2162), + [anon_sym_POUNDendif] = ACTIONS(2162), + [anon_sym_POUNDifdef] = ACTIONS(2162), + [anon_sym_POUNDifndef] = ACTIONS(2162), + [anon_sym_POUNDelse] = ACTIONS(2162), + [sym_preproc_directive] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_typedef] = ACTIONS(2162), + [anon_sym_auto] = ACTIONS(2162), + [anon_sym_register] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_restrict] = ACTIONS(2162), + [anon_sym_volatile] = ACTIONS(2162), + [sym_function_specifier] = ACTIONS(2162), + [anon_sym_unsigned] = ACTIONS(2162), + [anon_sym_long] = ACTIONS(2162), + [anon_sym_short] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_switch] = ACTIONS(2162), + [anon_sym_case] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_do] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_sizeof] = ACTIONS(2162), + [sym_number_literal] = ACTIONS(2162), + [sym_char_literal] = ACTIONS(2162), + [sym_string_literal] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2164), [sym_comment] = ACTIONS(123), }, [1033] = { - [anon_sym_COMMA] = ACTIONS(2167), - [anon_sym_RPAREN] = ACTIONS(2169), + [aux_sym_preproc_params_repeat1] = STATE(1037), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2168), [sym_comment] = ACTIONS(123), }, [1034] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2173), + [anon_sym_LF] = ACTIONS(2170), + [sym_preproc_arg] = ACTIONS(2172), [sym_comment] = ACTIONS(123), }, [1035] = { - [anon_sym_LF] = ACTIONS(2175), - [sym_preproc_arg] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2176), [sym_comment] = ACTIONS(123), }, [1036] = { - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_LF] = ACTIONS(2178), + [sym_preproc_arg] = ACTIONS(2180), [sym_comment] = ACTIONS(123), }, [1037] = { - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_COMMA] = ACTIONS(2182), + [anon_sym_RPAREN] = ACTIONS(2184), [sym_comment] = ACTIONS(123), }, [1038] = { - [anon_sym_LF] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2188), [sym_comment] = ACTIONS(123), }, [1039] = { - [ts_builtin_sym_end] = ACTIONS(2185), - [anon_sym_POUNDinclude] = ACTIONS(2187), - [anon_sym_POUNDdefine] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_POUNDif] = ACTIONS(2187), - [anon_sym_POUNDendif] = ACTIONS(2187), - [anon_sym_POUNDifdef] = ACTIONS(2187), - [anon_sym_POUNDifndef] = ACTIONS(2187), - [anon_sym_POUNDelse] = ACTIONS(2187), - [sym_preproc_directive] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_typedef] = ACTIONS(2187), - [anon_sym_auto] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_restrict] = ACTIONS(2187), - [anon_sym_volatile] = ACTIONS(2187), - [sym_function_specifier] = ACTIONS(2187), - [anon_sym_unsigned] = ACTIONS(2187), - [anon_sym_long] = ACTIONS(2187), - [anon_sym_short] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_switch] = ACTIONS(2187), - [anon_sym_case] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_goto] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_sizeof] = ACTIONS(2187), - [sym_number_literal] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2187), - [sym_string_literal] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2189), + [anon_sym_LF] = ACTIONS(2190), + [sym_preproc_arg] = ACTIONS(2192), [sym_comment] = ACTIONS(123), }, [1040] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [anon_sym_POUNDinclude] = ACTIONS(2193), - [anon_sym_POUNDdefine] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_POUNDif] = ACTIONS(2193), - [anon_sym_POUNDendif] = ACTIONS(2193), - [anon_sym_POUNDifdef] = ACTIONS(2193), - [anon_sym_POUNDifndef] = ACTIONS(2193), - [anon_sym_POUNDelse] = ACTIONS(2193), - [sym_preproc_directive] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_extern] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_typedef] = ACTIONS(2193), - [anon_sym_auto] = ACTIONS(2193), - [anon_sym_register] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_restrict] = ACTIONS(2193), - [anon_sym_volatile] = ACTIONS(2193), - [sym_function_specifier] = ACTIONS(2193), - [anon_sym_unsigned] = ACTIONS(2193), - [anon_sym_long] = ACTIONS(2193), - [anon_sym_short] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_goto] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_sizeof] = ACTIONS(2193), - [sym_number_literal] = ACTIONS(2193), - [sym_char_literal] = ACTIONS(2193), - [sym_string_literal] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2195), + [anon_sym_COMMA] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), [sym_comment] = ACTIONS(123), }, [1041] = { - [sym__expression] = STATE(1042), + [anon_sym_COMMA] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(123), + }, + [1042] = { + [anon_sym_LF] = ACTIONS(2198), + [sym_comment] = ACTIONS(123), + }, + [1043] = { + [ts_builtin_sym_end] = ACTIONS(2200), + [anon_sym_POUNDinclude] = ACTIONS(2202), + [anon_sym_POUNDdefine] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_POUNDif] = ACTIONS(2202), + [anon_sym_POUNDendif] = ACTIONS(2202), + [anon_sym_POUNDifdef] = ACTIONS(2202), + [anon_sym_POUNDifndef] = ACTIONS(2202), + [anon_sym_POUNDelse] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_auto] = ACTIONS(2202), + [anon_sym_register] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [sym_function_specifier] = ACTIONS(2202), + [anon_sym_unsigned] = ACTIONS(2202), + [anon_sym_long] = ACTIONS(2202), + [anon_sym_short] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_goto] = ACTIONS(2202), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_sizeof] = ACTIONS(2202), + [sym_number_literal] = ACTIONS(2202), + [sym_char_literal] = ACTIONS(2202), + [sym_string_literal] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2204), + [sym_comment] = ACTIONS(123), + }, + [1044] = { + [ts_builtin_sym_end] = ACTIONS(2206), + [anon_sym_POUNDinclude] = ACTIONS(2208), + [anon_sym_POUNDdefine] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_POUNDif] = ACTIONS(2208), + [anon_sym_POUNDendif] = ACTIONS(2208), + [anon_sym_POUNDifdef] = ACTIONS(2208), + [anon_sym_POUNDifndef] = ACTIONS(2208), + [anon_sym_POUNDelse] = ACTIONS(2208), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2208), + [anon_sym_auto] = ACTIONS(2208), + [anon_sym_register] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_restrict] = ACTIONS(2208), + [anon_sym_volatile] = ACTIONS(2208), + [sym_function_specifier] = ACTIONS(2208), + [anon_sym_unsigned] = ACTIONS(2208), + [anon_sym_long] = ACTIONS(2208), + [anon_sym_short] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [anon_sym_struct] = ACTIONS(2208), + [anon_sym_union] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_goto] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_TILDE] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2206), + [anon_sym_sizeof] = ACTIONS(2208), + [sym_number_literal] = ACTIONS(2208), + [sym_char_literal] = ACTIONS(2208), + [sym_string_literal] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2210), + [sym_comment] = ACTIONS(123), + }, + [1045] = { + [sym__expression] = STATE(1046), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -50924,66 +51094,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1042] = { + [1046] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1043] = { + [1047] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -51041,12 +51211,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [1044] = { + [1048] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -51104,16 +51274,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [1045] = { + [1049] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(2199), + [anon_sym_COLON] = ACTIONS(2214), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -51148,9 +51318,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1046] = { + [1050] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -51208,11 +51378,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [1047] = { - [sym__expression] = STATE(1048), + [1051] = { + [sym__expression] = STATE(1052), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -51230,66 +51400,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1048] = { + [1052] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1049] = { + [1053] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -51347,11 +51517,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [1050] = { - [sym__expression] = STATE(1051), + [1054] = { + [sym__expression] = STATE(1055), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -51369,66 +51539,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1051] = { + [1055] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1052] = { + [1056] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1060), + [sym__statement] = STATE(1064), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -51464,13 +51634,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -51486,19 +51656,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1053] = { - [anon_sym_LPAREN] = ACTIONS(2219), + [1057] = { + [anon_sym_LPAREN] = ACTIONS(2234), [sym_comment] = ACTIONS(123), }, - [1054] = { - [anon_sym_LPAREN] = ACTIONS(2221), + [1058] = { + [anon_sym_LPAREN] = ACTIONS(2236), [sym_comment] = ACTIONS(123), }, - [1055] = { - [sym__expression] = STATE(1087), + [1059] = { + [sym__expression] = STATE(1091), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -51532,26 +51702,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1056] = { - [anon_sym_COLON] = ACTIONS(2223), + [1060] = { + [anon_sym_COLON] = ACTIONS(2238), [sym_comment] = ACTIONS(123), }, - [1057] = { - [anon_sym_LPAREN] = ACTIONS(2225), + [1061] = { + [anon_sym_LPAREN] = ACTIONS(2240), [sym_comment] = ACTIONS(123), }, - [1058] = { - [anon_sym_LPAREN] = ACTIONS(2227), + [1062] = { + [anon_sym_LPAREN] = ACTIONS(2242), [sym_comment] = ACTIONS(123), }, - [1059] = { + [1063] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2244), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -51586,62 +51756,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(2231), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [1064] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(2246), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [1061] = { + [1065] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -51699,12 +51869,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1322), [sym_comment] = ACTIONS(123), }, - [1062] = { + [1066] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -51740,13 +51910,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -51762,20 +51932,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1063] = { - [sym_declaration] = STATE(1064), - [sym__declaration_specifiers] = STATE(505), + [1067] = { + [sym_declaration] = STATE(1068), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1065), + [sym__expression] = STATE(1069), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -51797,7 +51967,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2248), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -51825,11 +51995,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [1064] = { - [sym__expression] = STATE(1079), + [1068] = { + [sym__expression] = STATE(1083), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -51848,7 +52018,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2250), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -51864,49 +52034,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1065] = { + [1069] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1066] = { - [sym__expression] = STATE(1068), + [1070] = { + [sym__expression] = STATE(1072), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -51925,7 +52095,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2254), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -51941,8 +52111,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1067] = { - [sym__expression] = STATE(1076), + [1071] = { + [sym__expression] = STATE(1080), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -51961,7 +52131,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_RPAREN] = ACTIONS(2256), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -51977,49 +52147,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1068] = { + [1072] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1069] = { - [sym__expression] = STATE(1071), + [1073] = { + [sym__expression] = STATE(1075), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -52038,7 +52208,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2260), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -52054,9 +52224,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1070] = { + [1074] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52092,13 +52262,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52114,15 +52284,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1071] = { + [1075] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1073), + [aux_sym_for_statement_repeat1] = STATE(1077), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2262), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -52160,9 +52330,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1072] = { + [1076] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52198,13 +52368,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52220,17 +52390,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1073] = { + [1077] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2264), [sym_comment] = ACTIONS(123), }, - [1074] = { + [1078] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52266,13 +52436,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52288,12 +52458,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1075] = { + [1079] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52329,13 +52499,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52351,15 +52521,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1076] = { + [1080] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1077), + [aux_sym_for_statement_repeat1] = STATE(1081), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2260), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -52397,13 +52567,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1077] = { + [1081] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2262), [sym_comment] = ACTIONS(123), }, - [1078] = { - [sym__expression] = STATE(1081), + [1082] = { + [sym__expression] = STATE(1085), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -52422,7 +52592,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_RPAREN] = ACTIONS(2266), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -52438,50 +52608,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1079] = { + [1083] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1080] = { + [1084] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52517,13 +52687,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52539,15 +52709,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1081] = { + [1085] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1082), + [aux_sym_for_statement_repeat1] = STATE(1086), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_RPAREN] = ACTIONS(2256), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -52585,13 +52755,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1082] = { + [1086] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2260), [sym_comment] = ACTIONS(123), }, - [1083] = { - [sym__expression] = STATE(1084), + [1087] = { + [sym__expression] = STATE(1088), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -52609,66 +52779,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1084] = { + [1088] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1085] = { + [1089] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52704,13 +52874,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52726,12 +52896,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1086] = { + [1090] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52767,13 +52937,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52789,16 +52959,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1087] = { + [1091] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(2255), + [anon_sym_COLON] = ACTIONS(2270), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -52833,9 +53003,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1088] = { + [1092] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -52871,13 +53041,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -52893,11 +53063,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1089] = { - [sym__expression] = STATE(1090), + [1093] = { + [sym__expression] = STATE(1094), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -52915,66 +53085,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1090] = { + [1094] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1091] = { + [1095] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -53010,13 +53180,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -53032,11 +53202,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1092] = { - [sym__expression] = STATE(1093), + [1096] = { + [sym__expression] = STATE(1097), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -53054,66 +53224,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1093] = { + [1097] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1094] = { + [1098] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1095), + [sym__statement] = STATE(1099), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -53149,13 +53319,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -53171,65 +53341,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1095] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [1099] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [1096] = { + [1100] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -53265,13 +53435,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2207), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2228), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2230), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -53287,15 +53457,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(123), }, - [1097] = { - [anon_sym_RPAREN] = ACTIONS(2263), + [1101] = { + [anon_sym_RPAREN] = ACTIONS(2278), [sym_comment] = ACTIONS(123), }, - [1098] = { - [sym__expression] = STATE(339), + [1102] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -53312,10 +53482,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(145), [anon_sym_AMP] = ACTIONS(145), [anon_sym_BANG] = ACTIONS(183), @@ -53331,28 +53501,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1099] = { - [sym_declaration] = STATE(1380), - [sym__declaration_specifiers] = STATE(1533), - [sym__declarator] = STATE(268), - [sym__abstract_declarator] = STATE(269), - [sym_pointer_declarator] = STATE(240), + [1103] = { + [sym_declaration] = STATE(1384), + [sym__declaration_specifiers] = STATE(1540), + [sym__declarator] = STATE(271), + [sym__abstract_declarator] = STATE(272), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1352), - [sym__type_specifier] = STATE(1534), + [sym_type_qualifier] = STATE(1356), + [sym__type_specifier] = STATE(1541), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_parameter_type_list] = STATE(1153), + [sym_parameter_type_list] = STATE(1157), [sym_parameter_declaration] = STATE(227), - [sym__expression] = STATE(1535), - [sym_comma_expression] = STATE(1003), + [sym__expression] = STATE(1542), + [sym_comma_expression] = STATE(1007), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -53369,18 +53539,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1158), + [sym_type_name] = STATE(1162), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_array_declarator_repeat1] = STATE(204), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2286), [anon_sym_extern] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2288), [anon_sym_LBRACK] = ACTIONS(726), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -53396,34 +53566,34 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2302), [sym_comment] = ACTIONS(123), }, - [1100] = { - [aux_sym_preproc_params_repeat1] = STATE(1033), + [1104] = { + [aux_sym_preproc_params_repeat1] = STATE(1037), [aux_sym_parameter_type_list_repeat1] = STATE(233), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RPAREN] = ACTIONS(2310), [sym_comment] = ACTIONS(123), }, - [1101] = { + [1105] = { [sym__declaration_specifiers] = STATE(229), - [sym__declarator] = STATE(1488), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(1489), + [sym__declarator] = STATE(1494), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(1495), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), [sym__type_specifier] = STATE(230), @@ -53431,10 +53601,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_enumerator] = STATE(440), - [sym_parameter_declaration] = STATE(1490), - [sym__expression] = STATE(1491), - [sym_comma_expression] = STATE(399), + [sym_enumerator] = STATE(444), + [sym_parameter_declaration] = STATE(1496), + [sym__expression] = STATE(1497), + [sym_comma_expression] = STATE(403), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -53451,20 +53621,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(358), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(362), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym__initializer_list_contents_repeat1] = STATE(387), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [aux_sym__initializer_list_contents_repeat1] = STATE(391), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2319), [anon_sym_extern] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(1024), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), [anon_sym_auto] = ACTIONS(147), @@ -53479,24 +53649,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), - [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym_DOT] = ACTIONS(2337), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(123), }, - [1102] = { + [1106] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1475), + [sym__statement] = STATE(1481), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -53509,173 +53679,173 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(1476), + [sym__expression] = STATE(1482), [sym_comma_expression] = STATE(46), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1008), - [sym_concatenated_string] = STATE(947), - [ts_builtin_sym_end] = ACTIONS(1469), - [anon_sym_POUNDinclude] = ACTIONS(1471), - [anon_sym_POUNDdefine] = ACTIONS(1471), - [anon_sym_LF] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_RPAREN] = ACTIONS(2350), - [sym_preproc_arg] = ACTIONS(2363), - [anon_sym_POUNDif] = ACTIONS(1471), - [anon_sym_POUNDendif] = ACTIONS(1471), - [anon_sym_POUNDifdef] = ACTIONS(1471), - [anon_sym_POUNDifndef] = ACTIONS(1471), - [anon_sym_POUNDelse] = ACTIONS(1471), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_RBRACK] = ACTIONS(2401), - [anon_sym_EQ] = ACTIONS(2407), - [anon_sym_typedef] = 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_COLON] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_goto] = ACTIONS(2456), - [anon_sym_QMARK] = ACTIONS(2401), - [anon_sym_STAR_EQ] = ACTIONS(2401), - [anon_sym_SLASH_EQ] = ACTIONS(2401), - [anon_sym_PERCENT_EQ] = ACTIONS(2401), - [anon_sym_PLUS_EQ] = ACTIONS(2401), - [anon_sym_DASH_EQ] = ACTIONS(2401), - [anon_sym_LT_LT_EQ] = ACTIONS(2401), - [anon_sym_GT_GT_EQ] = ACTIONS(2401), - [anon_sym_AMP_EQ] = ACTIONS(2401), - [anon_sym_CARET_EQ] = ACTIONS(2401), - [anon_sym_PIPE_EQ] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_PIPE_PIPE] = ACTIONS(2401), - [anon_sym_AMP_AMP] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_EQ_EQ] = ACTIONS(2401), - [anon_sym_BANG_EQ] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2401), - [anon_sym_GT_EQ] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2470), - [anon_sym_GT_GT] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_PERCENT] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_sizeof] = ACTIONS(2495), - [anon_sym_DOT] = ACTIONS(2401), - [anon_sym_DASH_GT] = ACTIONS(2401), - [sym_number_literal] = ACTIONS(2498), - [sym_char_literal] = ACTIONS(2498), - [sym_string_literal] = ACTIONS(2501), - [sym_identifier] = ACTIONS(2504), - [sym_comment] = ACTIONS(123), - }, - [1103] = { - [ts_builtin_sym_end] = ACTIONS(2508), - [anon_sym_POUNDinclude] = ACTIONS(2515), - [anon_sym_POUNDdefine] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_POUNDif] = ACTIONS(2515), - [anon_sym_POUNDendif] = ACTIONS(2515), - [anon_sym_POUNDifdef] = ACTIONS(2515), - [anon_sym_POUNDifndef] = ACTIONS(2515), - [anon_sym_POUNDelse] = ACTIONS(2515), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_typedef] = ACTIONS(2515), - [anon_sym_auto] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_restrict] = ACTIONS(2515), - [anon_sym_volatile] = ACTIONS(2515), - [sym_function_specifier] = ACTIONS(2515), - [anon_sym_unsigned] = ACTIONS(2515), - [anon_sym_long] = ACTIONS(2515), - [anon_sym_short] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_switch] = ACTIONS(2515), - [anon_sym_case] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_sizeof] = ACTIONS(2515), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_initializer_list] = STATE(1012), + [sym_concatenated_string] = STATE(951), + [ts_builtin_sym_end] = ACTIONS(1484), + [anon_sym_POUNDinclude] = ACTIONS(1486), + [anon_sym_POUNDdefine] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RPAREN] = ACTIONS(2366), + [sym_preproc_arg] = ACTIONS(2380), + [anon_sym_POUNDif] = ACTIONS(1486), + [anon_sym_POUNDendif] = ACTIONS(1486), + [anon_sym_POUNDifdef] = ACTIONS(1486), + [anon_sym_POUNDifndef] = ACTIONS(1486), + [anon_sym_POUNDelse] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(2418), + [anon_sym_EQ] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [sym_function_specifier] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2473), + [anon_sym_QMARK] = ACTIONS(2418), + [anon_sym_STAR_EQ] = ACTIONS(2418), + [anon_sym_SLASH_EQ] = ACTIONS(2418), + [anon_sym_PERCENT_EQ] = ACTIONS(2418), + [anon_sym_PLUS_EQ] = ACTIONS(2418), + [anon_sym_DASH_EQ] = ACTIONS(2418), + [anon_sym_LT_LT_EQ] = ACTIONS(2418), + [anon_sym_GT_GT_EQ] = ACTIONS(2418), + [anon_sym_AMP_EQ] = ACTIONS(2418), + [anon_sym_CARET_EQ] = ACTIONS(2418), + [anon_sym_PIPE_EQ] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(2487), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2487), + [anon_sym_GT_GT] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_PERCENT] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2504), + [anon_sym_sizeof] = ACTIONS(2512), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_DASH_GT] = ACTIONS(2418), [sym_number_literal] = ACTIONS(2515), [sym_char_literal] = ACTIONS(2515), - [sym_string_literal] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2522), + [sym_string_literal] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2521), [sym_comment] = ACTIONS(123), }, - [1104] = { - [sym__expression] = STATE(1462), + [1107] = { + [ts_builtin_sym_end] = ACTIONS(2525), + [anon_sym_POUNDinclude] = ACTIONS(2532), + [anon_sym_POUNDdefine] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_POUNDif] = ACTIONS(2532), + [anon_sym_POUNDendif] = ACTIONS(2532), + [anon_sym_POUNDifdef] = ACTIONS(2532), + [anon_sym_POUNDifndef] = ACTIONS(2532), + [anon_sym_POUNDelse] = ACTIONS(2532), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_auto] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_restrict] = ACTIONS(2532), + [anon_sym_volatile] = ACTIONS(2532), + [sym_function_specifier] = ACTIONS(2532), + [anon_sym_unsigned] = ACTIONS(2532), + [anon_sym_long] = ACTIONS(2532), + [anon_sym_short] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_goto] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2532), + [sym_number_literal] = ACTIONS(2532), + [sym_char_literal] = ACTIONS(2532), + [sym_string_literal] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2539), + [sym_comment] = ACTIONS(123), + }, + [1108] = { + [sym__expression] = STATE(1468), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -53693,63 +53863,63 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(2529), - [anon_sym_POUNDinclude] = ACTIONS(2542), - [anon_sym_POUNDdefine] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_RPAREN] = ACTIONS(2569), - [anon_sym_POUNDif] = ACTIONS(2542), - [anon_sym_POUNDendif] = ACTIONS(2542), - [anon_sym_POUNDifdef] = ACTIONS(2542), - [anon_sym_POUNDifndef] = ACTIONS(2542), - [anon_sym_POUNDelse] = ACTIONS(2542), - [sym_preproc_directive] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_typedef] = ACTIONS(2542), - [anon_sym_auto] = ACTIONS(2542), - [anon_sym_register] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_restrict] = ACTIONS(2631), - [anon_sym_volatile] = ACTIONS(2631), - [sym_function_specifier] = ACTIONS(2542), - [anon_sym_unsigned] = ACTIONS(2631), - [anon_sym_long] = ACTIONS(2631), - [anon_sym_short] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_goto] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_sizeof] = ACTIONS(2714), - [sym_number_literal] = ACTIONS(2728), - [sym_char_literal] = ACTIONS(2728), - [sym_string_literal] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2756), + [ts_builtin_sym_end] = ACTIONS(2546), + [anon_sym_POUNDinclude] = ACTIONS(2559), + [anon_sym_POUNDdefine] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2572), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_POUNDif] = ACTIONS(2559), + [anon_sym_POUNDendif] = ACTIONS(2559), + [anon_sym_POUNDifdef] = ACTIONS(2559), + [anon_sym_POUNDifndef] = ACTIONS(2559), + [anon_sym_POUNDelse] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_auto] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_restrict] = ACTIONS(2648), + [anon_sym_volatile] = ACTIONS(2648), + [sym_function_specifier] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2648), + [anon_sym_long] = ACTIONS(2648), + [anon_sym_short] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2717), + [anon_sym_PLUS_PLUS] = ACTIONS(2717), + [anon_sym_sizeof] = ACTIONS(2731), + [sym_number_literal] = ACTIONS(2745), + [sym_char_literal] = ACTIONS(2745), + [sym_string_literal] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2773), [sym_comment] = ACTIONS(123), }, - [1105] = { + [1109] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -53764,15 +53934,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_linkage_specification] = STATE(39), [sym_compound_statement] = STATE(42), [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1352), - [sym__type_specifier] = STATE(1353), + [sym_type_qualifier] = STATE(1356), + [sym__type_specifier] = STATE(1357), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), - [sym__enum_specifier_contents] = STATE(1150), + [sym__enum_specifier_contents] = STATE(1154), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(283), - [sym_enumerator] = STATE(436), + [sym_struct_declaration] = STATE(287), + [sym_enumerator] = STATE(440), [sym__statement] = STATE(39), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), @@ -53786,7 +53956,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(1428), + [sym__expression] = STATE(1434), [sym_comma_expression] = STATE(46), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -53804,31 +53974,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(351), - [sym__initializer_list_contents] = STATE(1010), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(355), + [sym__initializer_list_contents] = STATE(1014), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(1429), + [aux_sym_translation_unit_repeat1] = STATE(1435), [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_struct_specifier_repeat1] = STATE(1164), - [aux_sym__initializer_list_contents_repeat1] = STATE(354), + [aux_sym_struct_specifier_repeat1] = STATE(1168), + [aux_sym__initializer_list_contents_repeat1] = STATE(358), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2793), [anon_sym_POUNDif] = ACTIONS(133), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(1024), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), [anon_sym_auto] = ACTIONS(147), @@ -53854,160 +54024,160 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), [anon_sym_goto] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(1036), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2811), [sym_comment] = ACTIONS(123), }, - [1106] = { - [ts_builtin_sym_end] = ACTIONS(2796), - [anon_sym_POUNDinclude] = ACTIONS(2801), - [anon_sym_POUNDdefine] = ACTIONS(2801), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2827), - [anon_sym_RPAREN] = ACTIONS(2827), - [anon_sym_POUNDif] = ACTIONS(2801), - [anon_sym_POUNDendif] = ACTIONS(2801), - [anon_sym_POUNDifdef] = ACTIONS(2801), - [anon_sym_POUNDifndef] = ACTIONS(2801), - [anon_sym_POUNDelse] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_auto] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [sym_function_specifier] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_COLON] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_else] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_STAR_EQ] = ACTIONS(2806), - [anon_sym_SLASH_EQ] = ACTIONS(2806), - [anon_sym_PERCENT_EQ] = ACTIONS(2806), - [anon_sym_PLUS_EQ] = ACTIONS(2806), - [anon_sym_DASH_EQ] = ACTIONS(2806), - [anon_sym_LT_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_GT_EQ] = ACTIONS(2806), - [anon_sym_AMP_EQ] = ACTIONS(2806), - [anon_sym_CARET_EQ] = ACTIONS(2806), - [anon_sym_PIPE_EQ] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_sizeof] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2801), - [sym_char_literal] = ACTIONS(2801), - [sym_string_literal] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2885), + [1110] = { + [ts_builtin_sym_end] = ACTIONS(2813), + [anon_sym_POUNDinclude] = ACTIONS(2818), + [anon_sym_POUNDdefine] = ACTIONS(2818), + [anon_sym_LF] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_COMMA] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_POUNDif] = ACTIONS(2818), + [anon_sym_POUNDendif] = ACTIONS(2818), + [anon_sym_POUNDifdef] = ACTIONS(2818), + [anon_sym_POUNDifndef] = ACTIONS(2818), + [anon_sym_POUNDelse] = ACTIONS(2818), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2818), + [anon_sym_RBRACK] = ACTIONS(2823), + [anon_sym_EQ] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2818), + [anon_sym_register] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2818), + [anon_sym_volatile] = ACTIONS(2818), + [sym_function_specifier] = ACTIONS(2818), + [anon_sym_unsigned] = ACTIONS(2818), + [anon_sym_long] = ACTIONS(2818), + [anon_sym_short] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2818), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2818), + [anon_sym_do] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_goto] = ACTIONS(2818), + [anon_sym_QMARK] = ACTIONS(2823), + [anon_sym_STAR_EQ] = ACTIONS(2823), + [anon_sym_SLASH_EQ] = ACTIONS(2823), + [anon_sym_PERCENT_EQ] = ACTIONS(2823), + [anon_sym_PLUS_EQ] = ACTIONS(2823), + [anon_sym_DASH_EQ] = ACTIONS(2823), + [anon_sym_LT_LT_EQ] = ACTIONS(2823), + [anon_sym_GT_GT_EQ] = ACTIONS(2823), + [anon_sym_AMP_EQ] = ACTIONS(2823), + [anon_sym_CARET_EQ] = ACTIONS(2823), + [anon_sym_PIPE_EQ] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2823), + [anon_sym_BANG_EQ] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2823), + [anon_sym_GT_EQ] = ACTIONS(2823), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2823), + [anon_sym_DASH_GT] = ACTIONS(2823), + [sym_number_literal] = ACTIONS(2818), + [sym_char_literal] = ACTIONS(2818), + [sym_string_literal] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2902), [sym_comment] = ACTIONS(123), }, - [1107] = { - [sym__declarator] = STATE(1336), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1111] = { + [sym__declarator] = STATE(1340), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym__expression] = STATE(1414), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [sym__expression] = STATE(1418), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), - [sym_identifier] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2936), [sym_comment] = ACTIONS(123), }, - [1108] = { + [1112] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(1407), + [sym__expression] = STATE(1411), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -54025,11 +54195,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [aux_sym_array_declarator_repeat1] = STATE(1408), + [aux_sym_array_declarator_repeat1] = STATE(1412), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_RBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2938), + [anon_sym_RBRACK] = ACTIONS(2940), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -54047,9 +54217,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1109] = { + [1113] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(1188), + [sym__expression] = STATE(1192), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -54067,18 +54237,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [aux_sym_array_declarator_repeat1] = STATE(1403), + [aux_sym_array_declarator_repeat1] = STATE(1407), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_extern] = ACTIONS(251), [anon_sym_STAR] = ACTIONS(514), [anon_sym_static] = ACTIONS(251), - [anon_sym_RBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(2942), [anon_sym_typedef] = ACTIONS(251), [anon_sym_auto] = ACTIONS(251), [anon_sym_register] = ACTIONS(251), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_restrict] = ACTIONS(2927), - [anon_sym_volatile] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_restrict] = ACTIONS(2944), + [anon_sym_volatile] = ACTIONS(2944), [sym_function_specifier] = ACTIONS(251), [anon_sym_unsigned] = ACTIONS(251), [anon_sym_long] = ACTIONS(251), @@ -54097,22 +54267,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2947), [sym_comment] = ACTIONS(123), }, - [1110] = { + [1114] = { [anon_sym_LF] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_RPAREN] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2967), [anon_sym_RBRACE] = ACTIONS(634), [anon_sym_STAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2972), [anon_sym_RBRACK] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(2967), - [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2961), [anon_sym_QMARK] = ACTIONS(634), [anon_sym_STAR_EQ] = ACTIONS(634), [anon_sym_SLASH_EQ] = ACTIONS(634), @@ -54143,83 +54313,83 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(636), [anon_sym_DASH_DASH] = ACTIONS(634), [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_DOT] = ACTIONS(2991), [anon_sym_DASH_GT] = ACTIONS(634), [sym_comment] = ACTIONS(123), }, - [1111] = { - [sym__expression] = STATE(1400), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1401), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1115] = { + [sym__expression] = STATE(1404), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_initializer_list] = STATE(1405), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1112] = { - [anon_sym_extern] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(2979), - [anon_sym_typedef] = ACTIONS(2979), - [anon_sym_auto] = ACTIONS(2979), - [anon_sym_register] = ACTIONS(2979), - [anon_sym_const] = ACTIONS(2979), - [anon_sym_restrict] = ACTIONS(2979), - [anon_sym_volatile] = ACTIONS(2979), - [sym_function_specifier] = ACTIONS(2979), - [anon_sym_unsigned] = ACTIONS(2979), - [anon_sym_long] = ACTIONS(2979), - [anon_sym_short] = ACTIONS(2979), - [anon_sym_enum] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2982), + [1116] = { + [anon_sym_extern] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_auto] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [sym_function_specifier] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2999), [sym_comment] = ACTIONS(123), }, - [1113] = { - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2988), - [anon_sym_long] = ACTIONS(2988), - [anon_sym_short] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2985), - [sym_identifier] = ACTIONS(2991), + [1117] = { + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(3002), + [anon_sym_RPAREN] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_unsigned] = ACTIONS(3005), + [anon_sym_long] = ACTIONS(3005), + [anon_sym_short] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3008), [sym_comment] = ACTIONS(123), }, - [1114] = { + [1118] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1397), + [sym__statement] = STATE(1401), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -54232,61 +54402,61 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(1398), + [sym__expression] = STATE(1402), [sym_comma_expression] = STATE(46), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), [anon_sym_goto] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), - [sym_identifier] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3023), [sym_comment] = ACTIONS(123), }, - [1115] = { - [anon_sym_LPAREN] = ACTIONS(3008), + [1119] = { + [anon_sym_LPAREN] = ACTIONS(3025), [sym_comment] = ACTIONS(123), }, - [1116] = { + [1120] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -54322,13 +54492,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -54344,15 +54514,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1117] = { - [anon_sym_LPAREN] = ACTIONS(3012), + [1121] = { + [anon_sym_LPAREN] = ACTIONS(3029), [sym_comment] = ACTIONS(123), }, - [1118] = { - [sym__expression] = STATE(1388), + [1122] = { + [sym__expression] = STATE(1392), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -54386,20 +54556,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1119] = { - [anon_sym_COLON] = ACTIONS(3014), + [1123] = { + [anon_sym_COLON] = ACTIONS(3031), [sym_comment] = ACTIONS(123), }, - [1120] = { - [anon_sym_LPAREN] = ACTIONS(3016), + [1124] = { + [anon_sym_LPAREN] = ACTIONS(3033), [sym_comment] = ACTIONS(123), }, - [1121] = { - [anon_sym_LPAREN] = ACTIONS(3018), + [1125] = { + [anon_sym_LPAREN] = ACTIONS(3035), [sym_comment] = ACTIONS(123), }, - [1122] = { - [sym__expression] = STATE(1376), + [1126] = { + [sym__expression] = STATE(1380), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -54433,417 +54603,417 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1123] = { - [sym__expression] = STATE(1248), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1127] = { + [sym__expression] = STATE(1252), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1124] = { - [sym__expression] = STATE(1375), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1128] = { + [sym__expression] = STATE(1379), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1125] = { - [sym__expression] = STATE(1374), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1129] = { + [sym__expression] = STATE(1378), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1126] = { - [sym__expression] = STATE(1373), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1130] = { + [sym__expression] = STATE(1377), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1127] = { - [sym__expression] = STATE(1247), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1131] = { + [sym__expression] = STATE(1251), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1128] = { - [sym__expression] = STATE(1372), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1132] = { + [sym__expression] = STATE(1376), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1129] = { - [sym__expression] = STATE(1371), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1133] = { + [sym__expression] = STATE(1375), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1130] = { - [sym__expression] = STATE(1370), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1134] = { + [sym__expression] = STATE(1374), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1131] = { - [sym__expression] = STATE(1369), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1135] = { + [sym__expression] = STATE(1373), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1132] = { - [sym__expression] = STATE(1368), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1136] = { + [sym__expression] = STATE(1372), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1133] = { - [sym__expression] = STATE(1246), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1137] = { + [sym__expression] = STATE(1250), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1134] = { - [sym__expression] = STATE(1249), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), + [1138] = { + [sym__expression] = STATE(1253), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), [anon_sym_LF] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3037), [anon_sym_COMMA] = ACTIONS(526), [anon_sym_RPAREN] = ACTIONS(526), [anon_sym_SEMI] = ACTIONS(526), [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3040), [anon_sym_LBRACK] = ACTIONS(526), [anon_sym_RBRACK] = ACTIONS(526), [anon_sym_EQ] = ACTIONS(528), @@ -54859,13 +55029,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(526), [anon_sym_CARET_EQ] = ACTIONS(526), [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3040), [anon_sym_PIPE_PIPE] = ACTIONS(526), [anon_sym_AMP_AMP] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3043), [anon_sym_PIPE] = ACTIONS(528), [anon_sym_CARET] = ACTIONS(528), - [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2928), [anon_sym_EQ_EQ] = ACTIONS(526), [anon_sym_BANG_EQ] = ACTIONS(526), [anon_sym_LT] = ACTIONS(528), @@ -54874,13 +55044,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(526), [anon_sym_LT_LT] = ACTIONS(528), [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), [anon_sym_SLASH] = ACTIONS(528), [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_sizeof] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_sizeof] = ACTIONS(2934), [anon_sym_DOT] = ACTIONS(526), [anon_sym_DASH_GT] = ACTIONS(526), [sym_number_literal] = ACTIONS(235), @@ -54889,53 +55059,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1135] = { - [sym__expression] = STATE(1365), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1139] = { + [sym__expression] = STATE(1369), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1136] = { - [sym_identifier] = ACTIONS(3036), + [1140] = { + [sym_identifier] = ACTIONS(3053), [sym_comment] = ACTIONS(123), }, - [1137] = { - [sym_function_definition] = STATE(754), - [sym_declaration] = STATE(754), - [sym__declaration_specifiers] = STATE(755), - [sym_declaration_list] = STATE(754), + [1141] = { + [sym_function_definition] = STATE(758), + [sym_declaration] = STATE(758), + [sym__declaration_specifiers] = STATE(759), + [sym_declaration_list] = STATE(758), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(756), + [sym__type_specifier] = STATE(760), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -54943,106 +55113,106 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_concatenated_string_repeat1] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(2191), - [anon_sym_POUNDinclude] = ACTIONS(2193), - [anon_sym_POUNDdefine] = ACTIONS(2193), - [anon_sym_LF] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_POUNDif] = ACTIONS(2193), - [anon_sym_POUNDendif] = ACTIONS(2193), - [anon_sym_POUNDifdef] = ACTIONS(2193), - [anon_sym_POUNDifndef] = ACTIONS(2193), - [anon_sym_POUNDelse] = ACTIONS(2193), - [sym_preproc_directive] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_extern] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3047), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3047), - [anon_sym_auto] = ACTIONS(3047), - [anon_sym_register] = ACTIONS(3047), - [anon_sym_const] = ACTIONS(3062), - [anon_sym_restrict] = ACTIONS(3062), - [anon_sym_volatile] = ACTIONS(3062), - [sym_function_specifier] = ACTIONS(3065), - [anon_sym_unsigned] = ACTIONS(3068), - [anon_sym_long] = ACTIONS(3068), - [anon_sym_short] = ACTIONS(3068), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_COLON] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_goto] = ACTIONS(2193), - [anon_sym_QMARK] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_LT_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_GT_EQ] = ACTIONS(3038), - [anon_sym_AMP_EQ] = ACTIONS(3038), - [anon_sym_CARET_EQ] = ACTIONS(3038), - [anon_sym_PIPE_EQ] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_sizeof] = ACTIONS(2193), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_DASH_GT] = ACTIONS(3038), - [sym_number_literal] = ACTIONS(2193), - [sym_char_literal] = ACTIONS(2193), - [sym_string_literal] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3085), + [aux_sym_concatenated_string_repeat1] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(2206), + [anon_sym_POUNDinclude] = ACTIONS(2208), + [anon_sym_POUNDdefine] = ACTIONS(2208), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_COMMA] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(3055), + [anon_sym_POUNDif] = ACTIONS(2208), + [anon_sym_POUNDendif] = ACTIONS(2208), + [anon_sym_POUNDifdef] = ACTIONS(2208), + [anon_sym_POUNDifndef] = ACTIONS(2208), + [anon_sym_POUNDelse] = ACTIONS(2208), + [sym_preproc_directive] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_RBRACK] = ACTIONS(3055), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_auto] = ACTIONS(3064), + [anon_sym_register] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [sym_function_specifier] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3094), + [anon_sym_COLON] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_goto] = ACTIONS(2208), + [anon_sym_QMARK] = ACTIONS(3055), + [anon_sym_STAR_EQ] = ACTIONS(3055), + [anon_sym_SLASH_EQ] = ACTIONS(3055), + [anon_sym_PERCENT_EQ] = ACTIONS(3055), + [anon_sym_PLUS_EQ] = ACTIONS(3055), + [anon_sym_DASH_EQ] = ACTIONS(3055), + [anon_sym_LT_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_GT_EQ] = ACTIONS(3055), + [anon_sym_AMP_EQ] = ACTIONS(3055), + [anon_sym_CARET_EQ] = ACTIONS(3055), + [anon_sym_PIPE_EQ] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(3075), + [anon_sym_CARET] = ACTIONS(3075), + [anon_sym_TILDE] = ACTIONS(2206), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_GT] = ACTIONS(3075), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3075), + [anon_sym_GT_GT] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3075), + [anon_sym_PERCENT] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_sizeof] = ACTIONS(2208), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_DASH_GT] = ACTIONS(3055), + [sym_number_literal] = ACTIONS(2208), + [sym_char_literal] = ACTIONS(2208), + [sym_string_literal] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3102), [sym_comment] = ACTIONS(123), }, - [1138] = { + [1142] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), [sym_preproc_def] = STATE(40), [sym_preproc_function_def] = STATE(40), - [sym_preproc_params] = STATE(1025), + [sym_preproc_params] = STATE(1029), [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(772), + [sym_preproc_else] = STATE(776), [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym__declaration_specifiers] = STATE(41), @@ -55089,32 +55259,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(773), - [aux_sym_preproc_params_repeat1] = STATE(1033), + [aux_sym_translation_unit_repeat1] = STATE(777), + [aux_sym_preproc_params_repeat1] = STATE(1037), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(2113), - [anon_sym_LF] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3102), - [anon_sym_RPAREN] = ACTIONS(3115), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(2128), + [anon_sym_LF] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3132), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(1751), + [anon_sym_POUNDendif] = ACTIONS(1766), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), - [anon_sym_POUNDelse] = ACTIONS(1753), + [anon_sym_POUNDelse] = ACTIONS(1768), [sym_preproc_directive] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3144), [anon_sym_extern] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3170), [anon_sym_static] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_EQ] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_EQ] = ACTIONS(3183), [anon_sym_typedef] = ACTIONS(147), [anon_sym_auto] = ACTIONS(147), [anon_sym_register] = ACTIONS(147), @@ -55128,175 +55298,175 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_COLON] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1763), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1780), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), [anon_sym_goto] = ACTIONS(181), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_STAR_EQ] = ACTIONS(3163), - [anon_sym_SLASH_EQ] = ACTIONS(3163), - [anon_sym_PERCENT_EQ] = ACTIONS(3163), - [anon_sym_PLUS_EQ] = ACTIONS(3163), - [anon_sym_DASH_EQ] = ACTIONS(3163), - [anon_sym_LT_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_GT_EQ] = ACTIONS(3163), - [anon_sym_AMP_EQ] = ACTIONS(3163), - [anon_sym_CARET_EQ] = ACTIONS(3163), - [anon_sym_PIPE_EQ] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_STAR_EQ] = ACTIONS(3180), + [anon_sym_SLASH_EQ] = ACTIONS(3180), + [anon_sym_PERCENT_EQ] = ACTIONS(3180), + [anon_sym_PLUS_EQ] = ACTIONS(3180), + [anon_sym_DASH_EQ] = ACTIONS(3180), + [anon_sym_LT_LT_EQ] = ACTIONS(3180), + [anon_sym_GT_GT_EQ] = ACTIONS(3180), + [anon_sym_AMP_EQ] = ACTIONS(3180), + [anon_sym_CARET_EQ] = ACTIONS(3180), + [anon_sym_PIPE_EQ] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_PIPE_PIPE] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3203), [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3186), - [anon_sym_GT_GT] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PERCENT] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3180), + [anon_sym_BANG_EQ] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3180), + [anon_sym_GT_EQ] = ACTIONS(3180), + [anon_sym_LT_LT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PERCENT] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), [anon_sym_sizeof] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_DASH_GT] = ACTIONS(3163), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_DASH_GT] = ACTIONS(3180), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3218), [sym_comment] = ACTIONS(123), }, - [1139] = { - [ts_builtin_sym_end] = ACTIONS(3208), - [anon_sym_POUNDinclude] = ACTIONS(3211), - [anon_sym_POUNDdefine] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_POUNDif] = ACTIONS(3211), - [anon_sym_POUNDendif] = ACTIONS(3211), - [anon_sym_POUNDifdef] = ACTIONS(3211), - [anon_sym_POUNDifndef] = ACTIONS(3211), - [anon_sym_POUNDelse] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_auto] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [sym_function_specifier] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_sizeof] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3211), - [sym_char_literal] = ACTIONS(3211), - [sym_string_literal] = ACTIONS(3208), - [sym_identifier] = ACTIONS(3214), + [1143] = { + [ts_builtin_sym_end] = ACTIONS(3225), + [anon_sym_POUNDinclude] = ACTIONS(3228), + [anon_sym_POUNDdefine] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_POUNDif] = ACTIONS(3228), + [anon_sym_POUNDendif] = ACTIONS(3228), + [anon_sym_POUNDifdef] = ACTIONS(3228), + [anon_sym_POUNDifndef] = ACTIONS(3228), + [anon_sym_POUNDelse] = ACTIONS(3228), + [sym_preproc_directive] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_extern] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_typedef] = ACTIONS(3228), + [anon_sym_auto] = ACTIONS(3228), + [anon_sym_register] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_restrict] = ACTIONS(3228), + [anon_sym_volatile] = ACTIONS(3228), + [sym_function_specifier] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3228), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_goto] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3228), + [sym_number_literal] = ACTIONS(3228), + [sym_char_literal] = ACTIONS(3228), + [sym_string_literal] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3231), [sym_comment] = ACTIONS(123), }, - [1140] = { - [anon_sym_POUNDendif] = ACTIONS(3217), + [1144] = { + [anon_sym_POUNDendif] = ACTIONS(3234), [sym_comment] = ACTIONS(123), }, - [1141] = { - [ts_builtin_sym_end] = ACTIONS(3219), - [anon_sym_POUNDinclude] = ACTIONS(3222), - [anon_sym_POUNDdefine] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_POUNDif] = ACTIONS(3222), - [anon_sym_POUNDendif] = ACTIONS(3222), - [anon_sym_POUNDifdef] = ACTIONS(3222), - [anon_sym_POUNDifndef] = ACTIONS(3222), - [anon_sym_POUNDelse] = ACTIONS(3222), - [sym_preproc_directive] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_typedef] = ACTIONS(3222), - [anon_sym_auto] = ACTIONS(3222), - [anon_sym_register] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_restrict] = ACTIONS(3222), - [anon_sym_volatile] = ACTIONS(3222), - [sym_function_specifier] = ACTIONS(3222), - [anon_sym_unsigned] = ACTIONS(3222), - [anon_sym_long] = ACTIONS(3222), - [anon_sym_short] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_struct] = ACTIONS(3222), - [anon_sym_union] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3222), - [anon_sym_default] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_goto] = ACTIONS(3222), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_sizeof] = ACTIONS(3222), - [sym_number_literal] = ACTIONS(3222), - [sym_char_literal] = ACTIONS(3222), - [sym_string_literal] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3225), + [1145] = { + [ts_builtin_sym_end] = ACTIONS(3236), + [anon_sym_POUNDinclude] = ACTIONS(3239), + [anon_sym_POUNDdefine] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_POUNDif] = ACTIONS(3239), + [anon_sym_POUNDendif] = ACTIONS(3239), + [anon_sym_POUNDifdef] = ACTIONS(3239), + [anon_sym_POUNDifndef] = ACTIONS(3239), + [anon_sym_POUNDelse] = ACTIONS(3239), + [sym_preproc_directive] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_typedef] = ACTIONS(3239), + [anon_sym_auto] = ACTIONS(3239), + [anon_sym_register] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_restrict] = ACTIONS(3239), + [anon_sym_volatile] = ACTIONS(3239), + [sym_function_specifier] = ACTIONS(3239), + [anon_sym_unsigned] = ACTIONS(3239), + [anon_sym_long] = ACTIONS(3239), + [anon_sym_short] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3239), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_case] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_goto] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_sizeof] = ACTIONS(3239), + [sym_number_literal] = ACTIONS(3239), + [sym_char_literal] = ACTIONS(3239), + [sym_string_literal] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3242), [sym_comment] = ACTIONS(123), }, - [1142] = { - [sym__expression] = STATE(1342), + [1146] = { + [sym__expression] = STATE(1346), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -55314,62 +55484,62 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(3219), - [anon_sym_POUNDinclude] = ACTIONS(3222), - [anon_sym_POUNDdefine] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_POUNDif] = ACTIONS(3222), - [anon_sym_POUNDendif] = ACTIONS(3222), - [anon_sym_POUNDifdef] = ACTIONS(3222), - [anon_sym_POUNDifndef] = ACTIONS(3222), - [anon_sym_POUNDelse] = ACTIONS(3222), - [sym_preproc_directive] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_extern] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_typedef] = ACTIONS(3222), - [anon_sym_auto] = ACTIONS(3222), - [anon_sym_register] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_restrict] = ACTIONS(3222), - [anon_sym_volatile] = ACTIONS(3222), - [sym_function_specifier] = ACTIONS(3222), - [anon_sym_unsigned] = ACTIONS(3222), - [anon_sym_long] = ACTIONS(3222), - [anon_sym_short] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_struct] = ACTIONS(3222), - [anon_sym_union] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3222), - [anon_sym_default] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_goto] = ACTIONS(3222), - [anon_sym_AMP] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_sizeof] = ACTIONS(3256), - [sym_number_literal] = ACTIONS(3260), - [sym_char_literal] = ACTIONS(3260), - [sym_string_literal] = ACTIONS(3264), - [sym_identifier] = ACTIONS(3268), + [ts_builtin_sym_end] = ACTIONS(3236), + [anon_sym_POUNDinclude] = ACTIONS(3239), + [anon_sym_POUNDdefine] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_POUNDif] = ACTIONS(3239), + [anon_sym_POUNDendif] = ACTIONS(3239), + [anon_sym_POUNDifdef] = ACTIONS(3239), + [anon_sym_POUNDifndef] = ACTIONS(3239), + [anon_sym_POUNDelse] = ACTIONS(3239), + [sym_preproc_directive] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_typedef] = ACTIONS(3239), + [anon_sym_auto] = ACTIONS(3239), + [anon_sym_register] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_restrict] = ACTIONS(3239), + [anon_sym_volatile] = ACTIONS(3239), + [sym_function_specifier] = ACTIONS(3239), + [anon_sym_unsigned] = ACTIONS(3239), + [anon_sym_long] = ACTIONS(3239), + [anon_sym_short] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3239), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_case] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_goto] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3273), + [sym_number_literal] = ACTIONS(3277), + [sym_char_literal] = ACTIONS(3277), + [sym_string_literal] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3285), [sym_comment] = ACTIONS(123), }, - [1143] = { - [sym__type_specifier] = STATE(1338), + [1147] = { + [sym__type_specifier] = STATE(1342), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -55385,342 +55555,342 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [1144] = { - [sym_compound_statement] = STATE(1331), - [aux_sym_declaration_repeat1] = STATE(1162), - [aux_sym_struct_declaration_repeat1] = STATE(1165), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_EQ] = ACTIONS(3302), - [anon_sym_COLON] = ACTIONS(3305), + [1148] = { + [sym_compound_statement] = STATE(1335), + [aux_sym_declaration_repeat1] = STATE(1166), + [aux_sym_struct_declaration_repeat1] = STATE(1169), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_RPAREN] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(3319), + [anon_sym_COLON] = ACTIONS(3322), [sym_comment] = ACTIONS(123), }, - [1145] = { - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_COMMA] = ACTIONS(3313), - [anon_sym_RPAREN] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3324), + [1149] = { + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_RPAREN] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3341), [sym_comment] = ACTIONS(123), }, - [1146] = { - [aux_sym_declaration_repeat1] = STATE(1162), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3331), + [1150] = { + [aux_sym_declaration_repeat1] = STATE(1166), + [anon_sym_COMMA] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3348), [sym_comment] = ACTIONS(123), }, - [1147] = { - [ts_builtin_sym_end] = ACTIONS(3335), - [anon_sym_POUNDinclude] = ACTIONS(3339), - [anon_sym_POUNDdefine] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_POUNDif] = ACTIONS(3339), - [anon_sym_POUNDendif] = ACTIONS(3339), - [anon_sym_POUNDifdef] = ACTIONS(3339), - [anon_sym_POUNDifndef] = ACTIONS(3339), - [anon_sym_POUNDelse] = ACTIONS(3339), - [sym_preproc_directive] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_typedef] = ACTIONS(3339), - [anon_sym_auto] = ACTIONS(3339), - [anon_sym_register] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_restrict] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [sym_function_specifier] = ACTIONS(3339), - [anon_sym_unsigned] = ACTIONS(3339), - [anon_sym_long] = ACTIONS(3339), - [anon_sym_short] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), + [1151] = { + [ts_builtin_sym_end] = ACTIONS(3352), + [anon_sym_POUNDinclude] = ACTIONS(3356), + [anon_sym_POUNDdefine] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_POUNDif] = ACTIONS(3356), + [anon_sym_POUNDendif] = ACTIONS(3356), + [anon_sym_POUNDifdef] = ACTIONS(3356), + [anon_sym_POUNDifndef] = ACTIONS(3356), + [anon_sym_POUNDelse] = ACTIONS(3356), + [sym_preproc_directive] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_extern] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_typedef] = ACTIONS(3356), + [anon_sym_auto] = ACTIONS(3356), + [anon_sym_register] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_restrict] = ACTIONS(3356), + [anon_sym_volatile] = ACTIONS(3356), + [sym_function_specifier] = ACTIONS(3356), + [anon_sym_unsigned] = ACTIONS(3356), + [anon_sym_long] = ACTIONS(3356), + [anon_sym_short] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), [anon_sym_else] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3339), - [sym_number_literal] = ACTIONS(3339), - [sym_char_literal] = ACTIONS(3339), - [sym_string_literal] = ACTIONS(3335), - [sym_identifier] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_sizeof] = ACTIONS(3356), + [sym_number_literal] = ACTIONS(3356), + [sym_char_literal] = ACTIONS(3356), + [sym_string_literal] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3360), [sym_comment] = ACTIONS(123), }, - [1148] = { - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_extern] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3347), - [anon_sym_typedef] = ACTIONS(2979), - [anon_sym_auto] = ACTIONS(2979), - [anon_sym_register] = ACTIONS(2979), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [sym_function_specifier] = ACTIONS(2979), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_sizeof] = ACTIONS(3355), - [sym_number_literal] = ACTIONS(3355), - [sym_char_literal] = ACTIONS(3355), - [sym_string_literal] = ACTIONS(3347), - [sym_identifier] = ACTIONS(3358), + [1152] = { + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_RBRACK] = ACTIONS(3364), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_auto] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_restrict] = ACTIONS(3367), + [anon_sym_volatile] = ACTIONS(3367), + [sym_function_specifier] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(3367), + [anon_sym_long] = ACTIONS(3367), + [anon_sym_short] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_union] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_sizeof] = ACTIONS(3372), + [sym_number_literal] = ACTIONS(3372), + [sym_char_literal] = ACTIONS(3372), + [sym_string_literal] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3375), [sym_comment] = ACTIONS(123), }, - [1149] = { - [sym__declarator] = STATE(1324), - [sym__abstract_declarator] = STATE(1325), - [sym_pointer_declarator] = STATE(240), + [1153] = { + [sym__declarator] = STATE(1328), + [sym__abstract_declarator] = STATE(1329), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_init_declarator] = STATE(1326), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3373), + [sym_init_declarator] = STATE(1330), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_RPAREN] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3390), [anon_sym_LBRACK] = ACTIONS(726), - [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3392), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1150] = { - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3379), + [1154] = { + [anon_sym_COMMA] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3396), [sym_comment] = ACTIONS(123), }, - [1151] = { - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [sym_identifier] = ACTIONS(3387), + [1155] = { + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_restrict] = ACTIONS(3401), + [anon_sym_volatile] = ACTIONS(3401), + [anon_sym_unsigned] = ACTIONS(3401), + [anon_sym_long] = ACTIONS(3401), + [anon_sym_short] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), + [anon_sym_struct] = ACTIONS(3401), + [anon_sym_union] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3404), [sym_comment] = ACTIONS(123), }, - [1152] = { - [anon_sym_COMMA] = ACTIONS(3390), - [anon_sym_RBRACE] = ACTIONS(3390), + [1156] = { + [anon_sym_COMMA] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), [sym_comment] = ACTIONS(123), }, - [1153] = { - [anon_sym_RPAREN] = ACTIONS(3393), + [1157] = { + [anon_sym_RPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(123), }, - [1154] = { + [1158] = { [aux_sym_parameter_type_list_repeat1] = STATE(233), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_RPAREN] = ACTIONS(3399), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3416), [sym_comment] = ACTIONS(123), }, - [1155] = { - [ts_builtin_sym_end] = ACTIONS(3403), - [anon_sym_POUNDinclude] = ACTIONS(3417), - [anon_sym_POUNDdefine] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_POUNDif] = ACTIONS(3417), - [anon_sym_POUNDendif] = ACTIONS(3417), - [anon_sym_POUNDifdef] = ACTIONS(3417), - [anon_sym_POUNDifndef] = ACTIONS(3417), - [anon_sym_POUNDelse] = ACTIONS(3417), - [sym_preproc_directive] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_extern] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_typedef] = ACTIONS(3417), - [anon_sym_auto] = ACTIONS(3417), - [anon_sym_register] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_restrict] = ACTIONS(3417), - [anon_sym_volatile] = ACTIONS(3417), - [sym_function_specifier] = ACTIONS(3417), - [anon_sym_unsigned] = ACTIONS(3417), - [anon_sym_long] = ACTIONS(3417), - [anon_sym_short] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3417), - [anon_sym_union] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_goto] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_sizeof] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3417), - [sym_char_literal] = ACTIONS(3417), - [sym_string_literal] = ACTIONS(3403), - [sym_identifier] = ACTIONS(3431), + [1159] = { + [ts_builtin_sym_end] = ACTIONS(3420), + [anon_sym_POUNDinclude] = ACTIONS(3434), + [anon_sym_POUNDdefine] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_POUNDif] = ACTIONS(3434), + [anon_sym_POUNDendif] = ACTIONS(3434), + [anon_sym_POUNDifdef] = ACTIONS(3434), + [anon_sym_POUNDifndef] = ACTIONS(3434), + [anon_sym_POUNDelse] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_auto] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [sym_function_specifier] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(3434), + [sym_number_literal] = ACTIONS(3434), + [sym_char_literal] = ACTIONS(3434), + [sym_string_literal] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3448), [sym_comment] = ACTIONS(123), }, - [1156] = { - [sym_argument_list] = STATE(968), - [aux_sym_for_statement_repeat1] = STATE(1166), - [anon_sym_LF] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3490), - [anon_sym_COMMA] = ACTIONS(3506), - [anon_sym_RPAREN] = ACTIONS(3529), - [anon_sym_SEMI] = ACTIONS(3548), - [anon_sym_RBRACE] = ACTIONS(3566), - [anon_sym_STAR] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_RBRACK] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3649), - [anon_sym_QMARK] = ACTIONS(3665), - [anon_sym_STAR_EQ] = ACTIONS(3681), - [anon_sym_SLASH_EQ] = ACTIONS(3681), - [anon_sym_PERCENT_EQ] = ACTIONS(3681), - [anon_sym_PLUS_EQ] = ACTIONS(3681), - [anon_sym_DASH_EQ] = ACTIONS(3681), - [anon_sym_LT_LT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_AMP_EQ] = ACTIONS(3681), - [anon_sym_CARET_EQ] = ACTIONS(3681), - [anon_sym_PIPE_EQ] = ACTIONS(3681), - [anon_sym_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3713), - [anon_sym_AMP_AMP] = ACTIONS(3713), - [anon_sym_PIPE] = ACTIONS(3697), - [anon_sym_CARET] = ACTIONS(3697), - [anon_sym_EQ_EQ] = ACTIONS(3729), - [anon_sym_BANG_EQ] = ACTIONS(3729), - [anon_sym_LT] = ACTIONS(3745), - [anon_sym_GT] = ACTIONS(3745), - [anon_sym_LT_EQ] = ACTIONS(3761), - [anon_sym_GT_EQ] = ACTIONS(3761), - [anon_sym_LT_LT] = ACTIONS(3777), - [anon_sym_GT_GT] = ACTIONS(3777), - [anon_sym_PLUS] = ACTIONS(3585), - [anon_sym_DASH] = ACTIONS(3585), - [anon_sym_SLASH] = ACTIONS(3585), - [anon_sym_PERCENT] = ACTIONS(3585), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DOT] = ACTIONS(3809), - [anon_sym_DASH_GT] = ACTIONS(3809), + [1160] = { + [sym_argument_list] = STATE(972), + [aux_sym_for_statement_repeat1] = STATE(1170), + [anon_sym_LF] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_RPAREN] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_RBRACE] = ACTIONS(3583), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_RBRACK] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(3650), + [anon_sym_COLON] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_STAR_EQ] = ACTIONS(3698), + [anon_sym_SLASH_EQ] = ACTIONS(3698), + [anon_sym_PERCENT_EQ] = ACTIONS(3698), + [anon_sym_PLUS_EQ] = ACTIONS(3698), + [anon_sym_DASH_EQ] = ACTIONS(3698), + [anon_sym_LT_LT_EQ] = ACTIONS(3698), + [anon_sym_GT_GT_EQ] = ACTIONS(3698), + [anon_sym_AMP_EQ] = ACTIONS(3698), + [anon_sym_CARET_EQ] = ACTIONS(3698), + [anon_sym_PIPE_EQ] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_PIPE] = ACTIONS(3714), + [anon_sym_CARET] = ACTIONS(3714), + [anon_sym_EQ_EQ] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3778), + [anon_sym_GT_EQ] = ACTIONS(3778), + [anon_sym_LT_LT] = ACTIONS(3794), + [anon_sym_GT_GT] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_SLASH] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_DOT] = ACTIONS(3826), + [anon_sym_DASH_GT] = ACTIONS(3826), [sym_comment] = ACTIONS(123), }, - [1157] = { - [anon_sym_RPAREN] = ACTIONS(3825), - [anon_sym_SEMI] = ACTIONS(3828), + [1161] = { + [anon_sym_RPAREN] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3845), [sym_comment] = ACTIONS(123), }, - [1158] = { - [anon_sym_RPAREN] = ACTIONS(3831), + [1162] = { + [anon_sym_RPAREN] = ACTIONS(3848), [sym_comment] = ACTIONS(123), }, - [1159] = { - [anon_sym_LF] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(3833), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(3839), - [anon_sym_RBRACE] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1029), - [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(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DASH_GT] = ACTIONS(1027), + [1163] = { + [anon_sym_LF] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PERCENT_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_LT_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_GT_EQ] = ACTIONS(1042), + [anon_sym_AMP_EQ] = ACTIONS(1042), + [anon_sym_CARET_EQ] = ACTIONS(1042), + [anon_sym_PIPE_EQ] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DASH_GT] = ACTIONS(1042), [sym_comment] = ACTIONS(123), }, - [1160] = { - [anon_sym_LBRACK] = ACTIONS(3847), - [anon_sym_EQ] = ACTIONS(3847), - [anon_sym_DOT] = ACTIONS(3847), + [1164] = { + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_EQ] = ACTIONS(3864), + [anon_sym_DOT] = ACTIONS(3864), [sym_comment] = ACTIONS(123), }, - [1161] = { + [1165] = { [sym__top_level_item] = STATE(53), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -55729,7 +55899,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(1203), + [sym_preproc_else] = STATE(1207), [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym__declaration_specifiers] = STATE(41), @@ -55783,15 +55953,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), [anon_sym_POUNDif] = ACTIONS(133), - [anon_sym_POUNDendif] = ACTIONS(3850), + [anon_sym_POUNDendif] = ACTIONS(3867), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), - [anon_sym_POUNDelse] = ACTIONS(1753), + [anon_sym_POUNDelse] = ACTIONS(1768), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(3853), + [anon_sym_RBRACE] = ACTIONS(3870), [anon_sym_STAR] = ACTIONS(145), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -55807,13 +55977,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -55829,22 +55999,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3867), + [sym_identifier] = ACTIONS(3884), [sym_comment] = ACTIONS(123), }, - [1162] = { - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(3869), + [1166] = { + [anon_sym_COMMA] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(3886), [sym_comment] = ACTIONS(123), }, - [1163] = { + [1167] = { [sym_type_qualifier] = STATE(207), - [sym__type_specifier] = STATE(1187), + [sym__type_specifier] = STATE(1191), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1188), + [sym__expression] = STATE(1192), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -55866,8 +56036,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(3871), - [anon_sym_RBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3888), + [anon_sym_RBRACK] = ACTIONS(3890), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -55888,21 +56058,21 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3875), + [sym_identifier] = ACTIONS(3892), [sym_comment] = ACTIONS(123), }, - [1164] = { + [1168] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(287), + [sym_struct_declaration] = STATE(291), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_RBRACE] = ACTIONS(3877), + [anon_sym_RBRACE] = ACTIONS(3894), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -55915,26 +56085,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [1165] = { - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3881), + [1169] = { + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym_COLON] = ACTIONS(3898), [sym_comment] = ACTIONS(123), }, - [1166] = { + [1170] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(3883), + [anon_sym_RPAREN] = ACTIONS(3900), [sym_comment] = ACTIONS(123), }, - [1167] = { - [sym_designator] = STATE(356), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(3885), - [anon_sym_DOT] = ACTIONS(1021), + [1171] = { + [sym_designator] = STATE(360), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(3902), + [anon_sym_DOT] = ACTIONS(1036), [sym_comment] = ACTIONS(123), }, - [1168] = { - [sym__expression] = STATE(1169), + [1172] = { + [sym__expression] = STATE(1173), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -55951,75 +56121,75 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(1170), + [sym_initializer_list] = STATE(1174), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_sizeof] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1034), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1169] = { + [1173] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(3887), - [anon_sym_RBRACE] = ACTIONS(3887), - [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(3904), + [anon_sym_RBRACE] = ACTIONS(3904), + [anon_sym_STAR] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_EQ_EQ] = ACTIONS(1059), - [anon_sym_BANG_EQ] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PERCENT_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_LT_LT_EQ] = ACTIONS(1062), + [anon_sym_GT_GT_EQ] = ACTIONS(1062), + [anon_sym_AMP_EQ] = ACTIONS(1062), + [anon_sym_CARET_EQ] = ACTIONS(1062), + [anon_sym_PIPE_EQ] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1170] = { - [anon_sym_COMMA] = ACTIONS(3887), - [anon_sym_RBRACE] = ACTIONS(3887), + [1174] = { + [anon_sym_COMMA] = ACTIONS(3904), + [anon_sym_RBRACE] = ACTIONS(3904), [sym_comment] = ACTIONS(123), }, - [1171] = { + [1175] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1174), + [sym__statement] = STATE(1178), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -56052,24 +56222,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LF] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3907), [anon_sym_COMMA] = ACTIONS(686), [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3910), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3913), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_RBRACK] = ACTIONS(686), [anon_sym_EQ] = ACTIONS(688), [anon_sym_COLON] = ACTIONS(686), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -56085,10 +56255,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(686), [anon_sym_CARET_EQ] = ACTIONS(686), [anon_sym_PIPE_EQ] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(3896), + [anon_sym_AMP] = ACTIONS(3913), [anon_sym_PIPE_PIPE] = ACTIONS(686), [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1334), [anon_sym_PIPE] = ACTIONS(688), [anon_sym_CARET] = ACTIONS(688), [anon_sym_TILDE] = ACTIONS(185), @@ -56100,33 +56270,33 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(686), [anon_sym_LT_LT] = ACTIONS(688), [anon_sym_GT_GT] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3916), + [anon_sym_DASH] = ACTIONS(3916), [anon_sym_SLASH] = ACTIONS(688), [anon_sym_PERCENT] = ACTIONS(688), - [anon_sym_DASH_DASH] = ACTIONS(3902), - [anon_sym_PLUS_PLUS] = ACTIONS(3902), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), [anon_sym_sizeof] = ACTIONS(191), [anon_sym_DOT] = ACTIONS(686), [anon_sym_DASH_GT] = ACTIONS(686), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1172] = { - [anon_sym_LPAREN] = ACTIONS(3905), + [1176] = { + [anon_sym_LPAREN] = ACTIONS(3922), [sym_comment] = ACTIONS(123), }, - [1173] = { + [1177] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(3907), + [anon_sym_COLON] = ACTIONS(3924), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -56161,65 +56331,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1174] = { - [ts_builtin_sym_end] = ACTIONS(3909), - [anon_sym_POUNDinclude] = ACTIONS(3913), - [anon_sym_POUNDdefine] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3909), - [anon_sym_POUNDif] = ACTIONS(3913), - [anon_sym_POUNDendif] = ACTIONS(3913), - [anon_sym_POUNDifdef] = ACTIONS(3913), - [anon_sym_POUNDifndef] = ACTIONS(3913), - [anon_sym_POUNDelse] = ACTIONS(3913), - [sym_preproc_directive] = ACTIONS(3917), - [anon_sym_SEMI] = ACTIONS(3909), - [anon_sym_extern] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3909), - [anon_sym_static] = ACTIONS(3913), - [anon_sym_typedef] = ACTIONS(3913), - [anon_sym_auto] = ACTIONS(3913), - [anon_sym_register] = ACTIONS(3913), - [anon_sym_const] = ACTIONS(3913), - [anon_sym_restrict] = ACTIONS(3913), - [anon_sym_volatile] = ACTIONS(3913), - [sym_function_specifier] = ACTIONS(3913), - [anon_sym_unsigned] = ACTIONS(3913), - [anon_sym_long] = ACTIONS(3913), - [anon_sym_short] = ACTIONS(3913), - [anon_sym_enum] = ACTIONS(3913), - [anon_sym_struct] = ACTIONS(3913), - [anon_sym_union] = ACTIONS(3913), - [anon_sym_if] = ACTIONS(3913), - [anon_sym_else] = ACTIONS(3913), - [anon_sym_switch] = ACTIONS(3913), - [anon_sym_case] = ACTIONS(3913), - [anon_sym_default] = ACTIONS(3913), - [anon_sym_while] = ACTIONS(3913), - [anon_sym_do] = ACTIONS(3913), - [anon_sym_for] = ACTIONS(3913), - [anon_sym_return] = ACTIONS(3913), - [anon_sym_break] = ACTIONS(3913), - [anon_sym_continue] = ACTIONS(3913), - [anon_sym_goto] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_TILDE] = ACTIONS(3909), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(3909), - [anon_sym_sizeof] = ACTIONS(3913), - [sym_number_literal] = ACTIONS(3913), - [sym_char_literal] = ACTIONS(3913), - [sym_string_literal] = ACTIONS(3909), - [sym_identifier] = ACTIONS(3917), + [1178] = { + [ts_builtin_sym_end] = ACTIONS(3926), + [anon_sym_POUNDinclude] = ACTIONS(3930), + [anon_sym_POUNDdefine] = ACTIONS(3930), + [anon_sym_LPAREN] = ACTIONS(3926), + [anon_sym_POUNDif] = ACTIONS(3930), + [anon_sym_POUNDendif] = ACTIONS(3930), + [anon_sym_POUNDifdef] = ACTIONS(3930), + [anon_sym_POUNDifndef] = ACTIONS(3930), + [anon_sym_POUNDelse] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_RBRACE] = ACTIONS(3926), + [anon_sym_STAR] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_auto] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [sym_function_specifier] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_if] = ACTIONS(3930), + [anon_sym_else] = ACTIONS(3930), + [anon_sym_switch] = ACTIONS(3930), + [anon_sym_case] = ACTIONS(3930), + [anon_sym_default] = ACTIONS(3930), + [anon_sym_while] = ACTIONS(3930), + [anon_sym_do] = ACTIONS(3930), + [anon_sym_for] = ACTIONS(3930), + [anon_sym_return] = ACTIONS(3930), + [anon_sym_break] = ACTIONS(3930), + [anon_sym_continue] = ACTIONS(3930), + [anon_sym_goto] = ACTIONS(3930), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_BANG] = ACTIONS(3926), + [anon_sym_TILDE] = ACTIONS(3926), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3930), + [sym_number_literal] = ACTIONS(3930), + [sym_char_literal] = ACTIONS(3930), + [sym_string_literal] = ACTIONS(3926), + [sym_identifier] = ACTIONS(3934), [sym_comment] = ACTIONS(123), }, - [1175] = { + [1179] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -56255,13 +56425,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -56277,11 +56447,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1176] = { - [sym__expression] = STATE(1177), + [1180] = { + [sym__expression] = STATE(1181), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -56299,66 +56469,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1177] = { + [1181] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1178] = { + [1182] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -56394,13 +56564,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -56416,25 +56586,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1179] = { - [anon_sym_RBRACE] = ACTIONS(3923), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [sym_identifier] = ACTIONS(3929), + [1183] = { + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_unsigned] = ACTIONS(3943), + [anon_sym_long] = ACTIONS(3943), + [anon_sym_short] = ACTIONS(3943), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_union] = ACTIONS(3943), + [sym_identifier] = ACTIONS(3946), [sym_comment] = ACTIONS(123), }, - [1180] = { - [sym__expression] = STATE(1181), + [1184] = { + [sym__expression] = STATE(1185), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -56468,74 +56638,74 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1181] = { + [1185] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1182] = { - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3937), - [anon_sym_restrict] = ACTIONS(3937), - [anon_sym_volatile] = ACTIONS(3937), - [anon_sym_unsigned] = ACTIONS(3937), - [anon_sym_long] = ACTIONS(3937), - [anon_sym_short] = ACTIONS(3937), - [anon_sym_enum] = ACTIONS(3937), - [anon_sym_struct] = ACTIONS(3937), - [anon_sym_union] = ACTIONS(3937), - [sym_identifier] = ACTIONS(3940), + [1186] = { + [anon_sym_RBRACE] = ACTIONS(3951), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [sym_identifier] = ACTIONS(3957), [sym_comment] = ACTIONS(123), }, - [1183] = { - [anon_sym_LPAREN] = ACTIONS(3943), - [anon_sym_COMMA] = ACTIONS(3943), - [anon_sym_RPAREN] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3943), - [anon_sym_COLON] = ACTIONS(3943), - [sym_identifier] = ACTIONS(3948), + [1187] = { + [anon_sym_LPAREN] = ACTIONS(3960), + [anon_sym_COMMA] = ACTIONS(3960), + [anon_sym_RPAREN] = ACTIONS(3960), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_LBRACK] = ACTIONS(3960), + [anon_sym_COLON] = ACTIONS(3960), + [sym_identifier] = ACTIONS(3965), [sym_comment] = ACTIONS(123), }, - [1184] = { - [sym__expression] = STATE(1191), + [1188] = { + [sym__expression] = STATE(1195), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -56569,18 +56739,18 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1185] = { - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_SEMI] = ACTIONS(3959), - [anon_sym_LBRACE] = ACTIONS(3959), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3959), - [anon_sym_COLON] = ACTIONS(3959), + [1189] = { + [anon_sym_LPAREN] = ACTIONS(3970), + [anon_sym_COMMA] = ACTIONS(3970), + [anon_sym_RPAREN] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3976), + [anon_sym_COLON] = ACTIONS(3976), [sym_comment] = ACTIONS(123), }, - [1186] = { + [1190] = { [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_SEMI] = ACTIONS(739), @@ -56624,30 +56794,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1187] = { - [sym__declarator] = STATE(293), + [1191] = { + [sym__declarator] = STATE(297), [sym__abstract_declarator] = STATE(212), - [sym_pointer_declarator] = STATE(240), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(795), [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(3979), [anon_sym_LBRACK] = ACTIONS(726), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_COLON] = ACTIONS(932), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1188] = { + [1192] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(3964), + [anon_sym_RBRACK] = ACTIONS(3981), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -56683,39 +56853,39 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1189] = { - [anon_sym_LPAREN] = ACTIONS(3966), - [anon_sym_COMMA] = ACTIONS(3966), - [anon_sym_RPAREN] = ACTIONS(3966), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3966), - [anon_sym_EQ] = ACTIONS(3972), - [anon_sym_COLON] = ACTIONS(3972), + [1193] = { + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_COMMA] = ACTIONS(3983), + [anon_sym_RPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_EQ] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(3989), [sym_comment] = ACTIONS(123), }, - [1190] = { - [sym__declarator] = STATE(265), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1194] = { + [sym__declarator] = STATE(266), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(3992), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_LBRACK] = ACTIONS(2921), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1191] = { + [1195] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3995), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -56751,193 +56921,193 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1192] = { - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym_COMMA] = ACTIONS(3980), - [anon_sym_RPAREN] = ACTIONS(3980), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(3980), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), + [1196] = { + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_COMMA] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(851), [sym_comment] = ACTIONS(123), }, - [1193] = { - [ts_builtin_sym_end] = ACTIONS(3984), - [anon_sym_POUNDinclude] = ACTIONS(3987), - [anon_sym_POUNDdefine] = ACTIONS(3987), - [anon_sym_LPAREN] = ACTIONS(3984), - [anon_sym_POUNDif] = ACTIONS(3987), - [anon_sym_POUNDendif] = ACTIONS(3987), - [anon_sym_POUNDifdef] = ACTIONS(3987), - [anon_sym_POUNDifndef] = ACTIONS(3987), - [anon_sym_POUNDelse] = ACTIONS(3987), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3987), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_RBRACE] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3987), - [anon_sym_typedef] = ACTIONS(3987), - [anon_sym_auto] = ACTIONS(3987), - [anon_sym_register] = ACTIONS(3987), - [anon_sym_const] = ACTIONS(3987), - [anon_sym_restrict] = ACTIONS(3987), - [anon_sym_volatile] = ACTIONS(3987), - [sym_function_specifier] = ACTIONS(3987), - [anon_sym_unsigned] = ACTIONS(3987), - [anon_sym_long] = ACTIONS(3987), - [anon_sym_short] = ACTIONS(3987), - [anon_sym_enum] = ACTIONS(3987), - [anon_sym_struct] = ACTIONS(3987), - [anon_sym_union] = ACTIONS(3987), - [anon_sym_if] = ACTIONS(3987), - [anon_sym_switch] = ACTIONS(3987), - [anon_sym_case] = ACTIONS(3987), - [anon_sym_default] = ACTIONS(3987), - [anon_sym_while] = ACTIONS(3987), - [anon_sym_do] = ACTIONS(3987), - [anon_sym_for] = ACTIONS(3987), - [anon_sym_return] = ACTIONS(3987), - [anon_sym_break] = ACTIONS(3987), - [anon_sym_continue] = ACTIONS(3987), - [anon_sym_goto] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_BANG] = ACTIONS(3984), - [anon_sym_TILDE] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3987), - [anon_sym_DASH] = ACTIONS(3987), - [anon_sym_DASH_DASH] = ACTIONS(3984), - [anon_sym_PLUS_PLUS] = ACTIONS(3984), - [anon_sym_sizeof] = ACTIONS(3987), - [sym_number_literal] = ACTIONS(3987), - [sym_char_literal] = ACTIONS(3987), - [sym_string_literal] = ACTIONS(3984), - [sym_identifier] = ACTIONS(3990), + [1197] = { + [ts_builtin_sym_end] = ACTIONS(4001), + [anon_sym_POUNDinclude] = ACTIONS(4004), + [anon_sym_POUNDdefine] = ACTIONS(4004), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_POUNDif] = ACTIONS(4004), + [anon_sym_POUNDendif] = ACTIONS(4004), + [anon_sym_POUNDifdef] = ACTIONS(4004), + [anon_sym_POUNDifndef] = ACTIONS(4004), + [anon_sym_POUNDelse] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(4001), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_auto] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [sym_function_specifier] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_switch] = ACTIONS(4004), + [anon_sym_case] = ACTIONS(4004), + [anon_sym_default] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_goto] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_BANG] = ACTIONS(4001), + [anon_sym_TILDE] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_DASH_DASH] = ACTIONS(4001), + [anon_sym_PLUS_PLUS] = ACTIONS(4001), + [anon_sym_sizeof] = ACTIONS(4004), + [sym_number_literal] = ACTIONS(4004), + [sym_char_literal] = ACTIONS(4004), + [sym_string_literal] = ACTIONS(4001), + [sym_identifier] = ACTIONS(4007), [sym_comment] = ACTIONS(123), }, - [1194] = { - [ts_builtin_sym_end] = ACTIONS(3993), - [anon_sym_POUNDinclude] = ACTIONS(3996), - [anon_sym_POUNDdefine] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3993), - [anon_sym_POUNDif] = ACTIONS(3996), - [anon_sym_POUNDendif] = ACTIONS(3996), - [anon_sym_POUNDifdef] = ACTIONS(3996), - [anon_sym_POUNDifndef] = ACTIONS(3996), - [anon_sym_POUNDelse] = ACTIONS(3996), - [sym_preproc_directive] = ACTIONS(3999), - [anon_sym_SEMI] = ACTIONS(3993), - [anon_sym_extern] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3993), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_STAR] = ACTIONS(3993), - [anon_sym_static] = ACTIONS(3996), - [anon_sym_typedef] = ACTIONS(3996), - [anon_sym_auto] = ACTIONS(3996), - [anon_sym_register] = ACTIONS(3996), - [anon_sym_const] = ACTIONS(3996), - [anon_sym_restrict] = ACTIONS(3996), - [anon_sym_volatile] = ACTIONS(3996), - [sym_function_specifier] = ACTIONS(3996), - [anon_sym_unsigned] = ACTIONS(3996), - [anon_sym_long] = ACTIONS(3996), - [anon_sym_short] = ACTIONS(3996), - [anon_sym_enum] = ACTIONS(3996), - [anon_sym_struct] = ACTIONS(3996), - [anon_sym_union] = ACTIONS(3996), - [anon_sym_if] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_case] = ACTIONS(3996), - [anon_sym_default] = ACTIONS(3996), - [anon_sym_while] = ACTIONS(3996), - [anon_sym_do] = ACTIONS(3996), - [anon_sym_for] = ACTIONS(3996), - [anon_sym_return] = ACTIONS(3996), - [anon_sym_break] = ACTIONS(3996), - [anon_sym_continue] = ACTIONS(3996), - [anon_sym_goto] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3993), - [anon_sym_BANG] = ACTIONS(3993), - [anon_sym_TILDE] = ACTIONS(3993), - [anon_sym_PLUS] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3993), - [anon_sym_PLUS_PLUS] = ACTIONS(3993), - [anon_sym_sizeof] = ACTIONS(3996), - [sym_number_literal] = ACTIONS(3996), - [sym_char_literal] = ACTIONS(3996), - [sym_string_literal] = ACTIONS(3993), - [sym_identifier] = ACTIONS(3999), + [1198] = { + [ts_builtin_sym_end] = ACTIONS(4010), + [anon_sym_POUNDinclude] = ACTIONS(4013), + [anon_sym_POUNDdefine] = ACTIONS(4013), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_POUNDif] = ACTIONS(4013), + [anon_sym_POUNDendif] = ACTIONS(4013), + [anon_sym_POUNDifdef] = ACTIONS(4013), + [anon_sym_POUNDifndef] = ACTIONS(4013), + [anon_sym_POUNDelse] = ACTIONS(4013), + [sym_preproc_directive] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4010), + [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4013), + [anon_sym_typedef] = ACTIONS(4013), + [anon_sym_auto] = ACTIONS(4013), + [anon_sym_register] = ACTIONS(4013), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_restrict] = ACTIONS(4013), + [anon_sym_volatile] = ACTIONS(4013), + [sym_function_specifier] = ACTIONS(4013), + [anon_sym_unsigned] = ACTIONS(4013), + [anon_sym_long] = ACTIONS(4013), + [anon_sym_short] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_case] = ACTIONS(4013), + [anon_sym_default] = ACTIONS(4013), + [anon_sym_while] = ACTIONS(4013), + [anon_sym_do] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_goto] = ACTIONS(4013), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_BANG] = ACTIONS(4010), + [anon_sym_TILDE] = ACTIONS(4010), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_sizeof] = ACTIONS(4013), + [sym_number_literal] = ACTIONS(4013), + [sym_char_literal] = ACTIONS(4013), + [sym_string_literal] = ACTIONS(4010), + [sym_identifier] = ACTIONS(4016), [sym_comment] = ACTIONS(123), }, - [1195] = { - [ts_builtin_sym_end] = ACTIONS(4002), - [anon_sym_POUNDinclude] = ACTIONS(4005), - [anon_sym_POUNDdefine] = ACTIONS(4005), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_POUNDif] = ACTIONS(4005), - [anon_sym_POUNDendif] = ACTIONS(4005), - [anon_sym_POUNDifdef] = ACTIONS(4005), - [anon_sym_POUNDifndef] = ACTIONS(4005), - [anon_sym_POUNDelse] = ACTIONS(4005), - [sym_preproc_directive] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4005), - [anon_sym_typedef] = ACTIONS(4005), - [anon_sym_auto] = ACTIONS(4005), - [anon_sym_register] = ACTIONS(4005), - [anon_sym_const] = ACTIONS(4005), - [anon_sym_restrict] = ACTIONS(4005), - [anon_sym_volatile] = ACTIONS(4005), - [sym_function_specifier] = ACTIONS(4005), - [anon_sym_unsigned] = ACTIONS(4005), - [anon_sym_long] = ACTIONS(4005), - [anon_sym_short] = ACTIONS(4005), - [anon_sym_enum] = ACTIONS(4005), - [anon_sym_struct] = ACTIONS(4005), - [anon_sym_union] = ACTIONS(4005), - [anon_sym_if] = ACTIONS(4005), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(4005), - [anon_sym_case] = ACTIONS(4005), - [anon_sym_default] = ACTIONS(4005), - [anon_sym_while] = ACTIONS(4005), - [anon_sym_do] = ACTIONS(4005), - [anon_sym_for] = ACTIONS(4005), - [anon_sym_return] = ACTIONS(4005), - [anon_sym_break] = ACTIONS(4005), - [anon_sym_continue] = ACTIONS(4005), - [anon_sym_goto] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_sizeof] = ACTIONS(4005), - [sym_number_literal] = ACTIONS(4005), - [sym_char_literal] = ACTIONS(4005), - [sym_string_literal] = ACTIONS(4002), - [sym_identifier] = ACTIONS(4008), + [1199] = { + [ts_builtin_sym_end] = ACTIONS(4019), + [anon_sym_POUNDinclude] = ACTIONS(4022), + [anon_sym_POUNDdefine] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4019), + [anon_sym_POUNDif] = ACTIONS(4022), + [anon_sym_POUNDendif] = ACTIONS(4022), + [anon_sym_POUNDifdef] = ACTIONS(4022), + [anon_sym_POUNDifndef] = ACTIONS(4022), + [anon_sym_POUNDelse] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_auto] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [sym_function_specifier] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_if] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1640), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_case] = ACTIONS(4022), + [anon_sym_default] = ACTIONS(4022), + [anon_sym_while] = ACTIONS(4022), + [anon_sym_do] = ACTIONS(4022), + [anon_sym_for] = ACTIONS(4022), + [anon_sym_return] = ACTIONS(4022), + [anon_sym_break] = ACTIONS(4022), + [anon_sym_continue] = ACTIONS(4022), + [anon_sym_goto] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4019), + [anon_sym_BANG] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4019), + [anon_sym_PLUS_PLUS] = ACTIONS(4019), + [anon_sym_sizeof] = ACTIONS(4022), + [sym_number_literal] = ACTIONS(4022), + [sym_char_literal] = ACTIONS(4022), + [sym_string_literal] = ACTIONS(4019), + [sym_identifier] = ACTIONS(4025), [sym_comment] = ACTIONS(123), }, - [1196] = { - [anon_sym_LPAREN] = ACTIONS(4011), + [1200] = { + [anon_sym_LPAREN] = ACTIONS(4028), [sym_comment] = ACTIONS(123), }, - [1197] = { - [anon_sym_LPAREN] = ACTIONS(4013), + [1201] = { + [anon_sym_LPAREN] = ACTIONS(4030), [sym_comment] = ACTIONS(123), }, - [1198] = { - [sym__expression] = STATE(1231), + [1202] = { + [sym__expression] = STATE(1235), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -56971,26 +57141,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1199] = { - [anon_sym_COLON] = ACTIONS(4015), + [1203] = { + [anon_sym_COLON] = ACTIONS(4032), [sym_comment] = ACTIONS(123), }, - [1200] = { - [anon_sym_LPAREN] = ACTIONS(4017), + [1204] = { + [anon_sym_LPAREN] = ACTIONS(4034), [sym_comment] = ACTIONS(123), }, - [1201] = { - [anon_sym_LPAREN] = ACTIONS(4019), + [1205] = { + [anon_sym_LPAREN] = ACTIONS(4036), [sym_comment] = ACTIONS(123), }, - [1202] = { + [1206] = { [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(377), [anon_sym_STAR] = ACTIONS(380), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(4021), + [anon_sym_COLON] = ACTIONS(4038), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -57026,68 +57196,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1203] = { - [anon_sym_POUNDendif] = ACTIONS(4023), + [1207] = { + [anon_sym_POUNDendif] = ACTIONS(4040), [sym_comment] = ACTIONS(123), }, - [1204] = { - [ts_builtin_sym_end] = ACTIONS(4025), - [anon_sym_POUNDinclude] = ACTIONS(4028), - [anon_sym_POUNDdefine] = ACTIONS(4028), - [anon_sym_LPAREN] = ACTIONS(4025), - [anon_sym_POUNDif] = ACTIONS(4028), - [anon_sym_POUNDendif] = ACTIONS(4028), - [anon_sym_POUNDifdef] = ACTIONS(4028), - [anon_sym_POUNDifndef] = ACTIONS(4028), - [anon_sym_POUNDelse] = ACTIONS(4028), - [sym_preproc_directive] = ACTIONS(4031), - [anon_sym_SEMI] = ACTIONS(4025), - [anon_sym_extern] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4025), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_STAR] = ACTIONS(4025), - [anon_sym_static] = ACTIONS(4028), - [anon_sym_typedef] = ACTIONS(4028), - [anon_sym_auto] = ACTIONS(4028), - [anon_sym_register] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4028), - [anon_sym_restrict] = ACTIONS(4028), - [anon_sym_volatile] = ACTIONS(4028), - [sym_function_specifier] = ACTIONS(4028), - [anon_sym_unsigned] = ACTIONS(4028), - [anon_sym_long] = ACTIONS(4028), - [anon_sym_short] = ACTIONS(4028), - [anon_sym_enum] = ACTIONS(4028), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_switch] = ACTIONS(4028), - [anon_sym_case] = ACTIONS(4028), - [anon_sym_default] = ACTIONS(4028), - [anon_sym_while] = ACTIONS(4028), - [anon_sym_do] = ACTIONS(4028), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_break] = ACTIONS(4028), - [anon_sym_continue] = ACTIONS(4028), - [anon_sym_goto] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(4025), - [anon_sym_TILDE] = ACTIONS(4025), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_DASH_DASH] = ACTIONS(4025), - [anon_sym_PLUS_PLUS] = ACTIONS(4025), - [anon_sym_sizeof] = ACTIONS(4028), - [sym_number_literal] = ACTIONS(4028), - [sym_char_literal] = ACTIONS(4028), - [sym_string_literal] = ACTIONS(4025), - [sym_identifier] = ACTIONS(4031), + [1208] = { + [ts_builtin_sym_end] = ACTIONS(4042), + [anon_sym_POUNDinclude] = ACTIONS(4045), + [anon_sym_POUNDdefine] = ACTIONS(4045), + [anon_sym_LPAREN] = ACTIONS(4042), + [anon_sym_POUNDif] = ACTIONS(4045), + [anon_sym_POUNDendif] = ACTIONS(4045), + [anon_sym_POUNDifdef] = ACTIONS(4045), + [anon_sym_POUNDifndef] = ACTIONS(4045), + [anon_sym_POUNDelse] = ACTIONS(4045), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4042), + [anon_sym_RBRACE] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4045), + [anon_sym_typedef] = ACTIONS(4045), + [anon_sym_auto] = ACTIONS(4045), + [anon_sym_register] = ACTIONS(4045), + [anon_sym_const] = ACTIONS(4045), + [anon_sym_restrict] = ACTIONS(4045), + [anon_sym_volatile] = ACTIONS(4045), + [sym_function_specifier] = ACTIONS(4045), + [anon_sym_unsigned] = ACTIONS(4045), + [anon_sym_long] = ACTIONS(4045), + [anon_sym_short] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_struct] = ACTIONS(4045), + [anon_sym_union] = ACTIONS(4045), + [anon_sym_if] = ACTIONS(4045), + [anon_sym_switch] = ACTIONS(4045), + [anon_sym_case] = ACTIONS(4045), + [anon_sym_default] = ACTIONS(4045), + [anon_sym_while] = ACTIONS(4045), + [anon_sym_do] = ACTIONS(4045), + [anon_sym_for] = ACTIONS(4045), + [anon_sym_return] = ACTIONS(4045), + [anon_sym_break] = ACTIONS(4045), + [anon_sym_continue] = ACTIONS(4045), + [anon_sym_goto] = ACTIONS(4045), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_DASH_DASH] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4042), + [anon_sym_sizeof] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(4045), + [sym_char_literal] = ACTIONS(4045), + [sym_string_literal] = ACTIONS(4042), + [sym_identifier] = ACTIONS(4048), [sym_comment] = ACTIONS(123), }, - [1205] = { + [1209] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(490), + [sym__statement] = STATE(494), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -57123,13 +57293,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -57145,17 +57315,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1206] = { + [1210] = { [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(4021), + [anon_sym_COLON] = ACTIONS(4038), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -57190,17 +57360,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1207] = { - [sym_declaration] = STATE(1208), - [sym__declaration_specifiers] = STATE(505), + [1211] = { + [sym_declaration] = STATE(1212), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1209), + [sym__expression] = STATE(1213), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -57222,7 +57392,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4053), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -57250,11 +57420,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [1208] = { - [sym__expression] = STATE(1223), + [1212] = { + [sym__expression] = STATE(1227), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -57273,7 +57443,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4055), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -57289,49 +57459,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1209] = { + [1213] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(4057), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1210] = { - [sym__expression] = STATE(1212), + [1214] = { + [sym__expression] = STATE(1216), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -57350,7 +57520,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4059), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -57366,8 +57536,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1211] = { - [sym__expression] = STATE(1220), + [1215] = { + [sym__expression] = STATE(1224), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -57386,7 +57556,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4061), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -57402,49 +57572,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1212] = { + [1216] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(4063), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1213] = { - [sym__expression] = STATE(1215), + [1217] = { + [sym__expression] = STATE(1219), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -57463,7 +57633,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(4048), + [anon_sym_RPAREN] = ACTIONS(4065), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -57479,9 +57649,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1214] = { + [1218] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -57517,13 +57687,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -57539,15 +57709,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1215] = { + [1219] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1217), + [aux_sym_for_statement_repeat1] = STATE(1221), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4067), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -57585,9 +57755,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1216] = { + [1220] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -57623,13 +57793,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -57645,17 +57815,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1217] = { + [1221] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4052), + [anon_sym_RPAREN] = ACTIONS(4069), [sym_comment] = ACTIONS(123), }, - [1218] = { + [1222] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -57691,13 +57861,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -57713,12 +57883,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1219] = { + [1223] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -57754,13 +57924,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -57776,15 +57946,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1220] = { + [1224] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1221), + [aux_sym_for_statement_repeat1] = STATE(1225), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4048), + [anon_sym_RPAREN] = ACTIONS(4065), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -57822,13 +57992,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1221] = { + [1225] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_RPAREN] = ACTIONS(4067), [sym_comment] = ACTIONS(123), }, - [1222] = { - [sym__expression] = STATE(1225), + [1226] = { + [sym__expression] = STATE(1229), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -57847,7 +58017,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_RPAREN] = ACTIONS(4071), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -57863,50 +58033,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1223] = { + [1227] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(4059), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1224] = { + [1228] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -57942,13 +58112,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -57964,15 +58134,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1225] = { + [1229] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1226), + [aux_sym_for_statement_repeat1] = STATE(1230), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4061), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -58010,13 +58180,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1226] = { + [1230] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4048), + [anon_sym_RPAREN] = ACTIONS(4065), [sym_comment] = ACTIONS(123), }, - [1227] = { - [sym__expression] = STATE(1228), + [1231] = { + [sym__expression] = STATE(1232), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -58034,66 +58204,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1228] = { + [1232] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1229] = { + [1233] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -58129,13 +58299,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -58151,12 +58321,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1230] = { + [1234] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -58192,13 +58362,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -58214,16 +58384,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1231] = { + [1235] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(4058), + [anon_sym_COLON] = ACTIONS(4075), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -58258,9 +58428,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1232] = { + [1236] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -58296,13 +58466,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -58318,11 +58488,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1233] = { - [sym__expression] = STATE(1234), + [1237] = { + [sym__expression] = STATE(1238), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -58340,66 +58510,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1234] = { + [1238] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1235] = { + [1239] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -58435,13 +58605,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -58457,11 +58627,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1236] = { - [sym__expression] = STATE(1237), + [1240] = { + [sym__expression] = STATE(1241), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -58479,66 +58649,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1237] = { + [1241] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1238] = { + [1242] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1239), + [sym__statement] = STATE(1243), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -58574,13 +58744,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -58596,68 +58766,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1239] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDendif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [anon_sym_POUNDelse] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(4064), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [1243] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDendif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [anon_sym_POUNDelse] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(4081), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [1240] = { + [1244] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(628), + [sym__statement] = STATE(632), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -58693,13 +58863,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_switch] = ACTIONS(3857), - [anon_sym_case] = ACTIONS(3859), - [anon_sym_default] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3874), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3880), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3882), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -58715,91 +58885,91 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4051), [sym_comment] = ACTIONS(123), }, - [1241] = { - [sym__expression] = STATE(1245), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1008), - [sym_concatenated_string] = STATE(947), - [anon_sym_LF] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4070), - [anon_sym_RPAREN] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(4073), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(4070), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(4077), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(4083), - [anon_sym_PLUS_PLUS] = ACTIONS(4083), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [1245] = { + [sym__expression] = STATE(1249), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_initializer_list] = STATE(1012), + [sym_concatenated_string] = STATE(951), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(4083), + [anon_sym_COMMA] = ACTIONS(4087), + [anon_sym_RPAREN] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_COLON] = ACTIONS(4087), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_sizeof] = ACTIONS(2934), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), - [sym_identifier] = ACTIONS(4086), + [sym_identifier] = ACTIONS(4103), [sym_comment] = ACTIONS(123), }, - [1242] = { + [1246] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1002), - [sym_comma_expression] = STATE(1003), + [sym__expression] = STATE(1006), + [sym_comma_expression] = STATE(1007), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -58816,7 +58986,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1251), + [sym_type_name] = STATE(1255), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -58846,402 +59016,402 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1243] = { - [sym__expression] = STATE(1250), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1247] = { + [sym__expression] = STATE(1254), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1244] = { - [sym__expression] = STATE(1249), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1248] = { + [sym__expression] = STATE(1253), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1245] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(4089), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4095), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(4098), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4104), - [anon_sym_SLASH_EQ] = ACTIONS(4104), - [anon_sym_PERCENT_EQ] = ACTIONS(4104), - [anon_sym_PLUS_EQ] = ACTIONS(4104), - [anon_sym_DASH_EQ] = ACTIONS(4104), - [anon_sym_LT_LT_EQ] = ACTIONS(4104), - [anon_sym_GT_GT_EQ] = ACTIONS(4104), - [anon_sym_AMP_EQ] = ACTIONS(4104), - [anon_sym_CARET_EQ] = ACTIONS(4104), - [anon_sym_PIPE_EQ] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE] = ACTIONS(4107), - [anon_sym_CARET] = ACTIONS(4107), - [anon_sym_EQ_EQ] = ACTIONS(4113), - [anon_sym_BANG_EQ] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_LT_EQ] = ACTIONS(4119), - [anon_sym_GT_EQ] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4125), - [anon_sym_PLUS_PLUS] = ACTIONS(4125), - [anon_sym_DOT] = ACTIONS(4128), - [anon_sym_DASH_GT] = ACTIONS(4128), + [1249] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(4106), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(4115), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_STAR_EQ] = ACTIONS(4121), + [anon_sym_SLASH_EQ] = ACTIONS(4121), + [anon_sym_PERCENT_EQ] = ACTIONS(4121), + [anon_sym_PLUS_EQ] = ACTIONS(4121), + [anon_sym_DASH_EQ] = ACTIONS(4121), + [anon_sym_LT_LT_EQ] = ACTIONS(4121), + [anon_sym_GT_GT_EQ] = ACTIONS(4121), + [anon_sym_AMP_EQ] = ACTIONS(4121), + [anon_sym_CARET_EQ] = ACTIONS(4121), + [anon_sym_PIPE_EQ] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4127), + [anon_sym_PIPE] = ACTIONS(4124), + [anon_sym_CARET] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_LT] = ACTIONS(4133), + [anon_sym_GT] = ACTIONS(4133), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_LT] = ACTIONS(4139), + [anon_sym_GT_GT] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_SLASH] = ACTIONS(4109), + [anon_sym_PERCENT] = ACTIONS(4109), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DASH_GT] = ACTIONS(4145), [sym_comment] = ACTIONS(123), }, - [1246] = { - [sym_argument_list] = STATE(968), + [1250] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4148), [anon_sym_COMMA] = ACTIONS(540), [anon_sym_RPAREN] = ACTIONS(540), [anon_sym_SEMI] = ACTIONS(540), [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4151), + [anon_sym_LBRACK] = ACTIONS(4154), [anon_sym_RBRACK] = ACTIONS(540), - [anon_sym_EQ] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4157), [anon_sym_COLON] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(4143), - [anon_sym_STAR_EQ] = ACTIONS(4146), - [anon_sym_SLASH_EQ] = ACTIONS(4146), - [anon_sym_PERCENT_EQ] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4146), - [anon_sym_DASH_EQ] = ACTIONS(4146), - [anon_sym_LT_LT_EQ] = ACTIONS(4146), - [anon_sym_GT_GT_EQ] = ACTIONS(4146), - [anon_sym_AMP_EQ] = ACTIONS(4146), - [anon_sym_CARET_EQ] = ACTIONS(4146), - [anon_sym_PIPE_EQ] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_PIPE_PIPE] = ACTIONS(4152), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4149), - [anon_sym_CARET] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4155), - [anon_sym_BANG_EQ] = ACTIONS(4155), - [anon_sym_LT] = ACTIONS(4158), - [anon_sym_GT] = ACTIONS(4158), - [anon_sym_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_LT] = ACTIONS(4164), - [anon_sym_GT_GT] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4134), - [anon_sym_SLASH] = ACTIONS(4134), - [anon_sym_PERCENT] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_DASH_GT] = ACTIONS(4170), + [anon_sym_QMARK] = ACTIONS(4160), + [anon_sym_STAR_EQ] = ACTIONS(4163), + [anon_sym_SLASH_EQ] = ACTIONS(4163), + [anon_sym_PERCENT_EQ] = ACTIONS(4163), + [anon_sym_PLUS_EQ] = ACTIONS(4163), + [anon_sym_DASH_EQ] = ACTIONS(4163), + [anon_sym_LT_LT_EQ] = ACTIONS(4163), + [anon_sym_GT_GT_EQ] = ACTIONS(4163), + [anon_sym_AMP_EQ] = ACTIONS(4163), + [anon_sym_CARET_EQ] = ACTIONS(4163), + [anon_sym_PIPE_EQ] = ACTIONS(4163), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4169), + [anon_sym_AMP_AMP] = ACTIONS(4169), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4175), + [anon_sym_GT] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4178), + [anon_sym_GT_EQ] = ACTIONS(4178), + [anon_sym_LT_LT] = ACTIONS(4181), + [anon_sym_GT_GT] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4151), + [anon_sym_DASH] = ACTIONS(4151), + [anon_sym_SLASH] = ACTIONS(4151), + [anon_sym_PERCENT] = ACTIONS(4151), + [anon_sym_DASH_DASH] = ACTIONS(4184), + [anon_sym_PLUS_PLUS] = ACTIONS(4184), + [anon_sym_DOT] = ACTIONS(4187), + [anon_sym_DASH_GT] = ACTIONS(4187), [sym_comment] = ACTIONS(123), }, - [1247] = { - [sym_argument_list] = STATE(968), + [1251] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4190), [anon_sym_COMMA] = ACTIONS(556), [anon_sym_RPAREN] = ACTIONS(556), [anon_sym_SEMI] = ACTIONS(556), [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4196), [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4199), [anon_sym_COLON] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(4185), - [anon_sym_STAR_EQ] = ACTIONS(4188), - [anon_sym_SLASH_EQ] = ACTIONS(4188), - [anon_sym_PERCENT_EQ] = ACTIONS(4188), - [anon_sym_PLUS_EQ] = ACTIONS(4188), - [anon_sym_DASH_EQ] = ACTIONS(4188), - [anon_sym_LT_LT_EQ] = ACTIONS(4188), - [anon_sym_GT_GT_EQ] = ACTIONS(4188), - [anon_sym_AMP_EQ] = ACTIONS(4188), - [anon_sym_CARET_EQ] = ACTIONS(4188), - [anon_sym_PIPE_EQ] = ACTIONS(4188), - [anon_sym_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_PIPE] = ACTIONS(4191), - [anon_sym_CARET] = ACTIONS(4191), - [anon_sym_EQ_EQ] = ACTIONS(4197), - [anon_sym_BANG_EQ] = ACTIONS(4197), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_LT_EQ] = ACTIONS(4203), - [anon_sym_GT_EQ] = ACTIONS(4203), - [anon_sym_LT_LT] = ACTIONS(4206), - [anon_sym_GT_GT] = ACTIONS(4206), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_SLASH] = ACTIONS(4176), - [anon_sym_PERCENT] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4209), - [anon_sym_PLUS_PLUS] = ACTIONS(4209), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4212), + [anon_sym_QMARK] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4205), + [anon_sym_SLASH_EQ] = ACTIONS(4205), + [anon_sym_PERCENT_EQ] = ACTIONS(4205), + [anon_sym_PLUS_EQ] = ACTIONS(4205), + [anon_sym_DASH_EQ] = ACTIONS(4205), + [anon_sym_LT_LT_EQ] = ACTIONS(4205), + [anon_sym_GT_GT_EQ] = ACTIONS(4205), + [anon_sym_AMP_EQ] = ACTIONS(4205), + [anon_sym_CARET_EQ] = ACTIONS(4205), + [anon_sym_PIPE_EQ] = ACTIONS(4205), + [anon_sym_AMP] = ACTIONS(4208), + [anon_sym_PIPE_PIPE] = ACTIONS(4211), + [anon_sym_AMP_AMP] = ACTIONS(4211), + [anon_sym_PIPE] = ACTIONS(4208), + [anon_sym_CARET] = ACTIONS(4208), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_LT] = ACTIONS(4217), + [anon_sym_GT] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_LT_LT] = ACTIONS(4223), + [anon_sym_GT_GT] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_DASH_GT] = ACTIONS(4229), [sym_comment] = ACTIONS(123), }, - [1248] = { - [sym_argument_list] = STATE(968), + [1252] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4232), [anon_sym_COMMA] = ACTIONS(564), [anon_sym_RPAREN] = ACTIONS(564), [anon_sym_SEMI] = ACTIONS(564), [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4238), [anon_sym_RBRACK] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(4224), + [anon_sym_EQ] = ACTIONS(4241), [anon_sym_COLON] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4230), - [anon_sym_SLASH_EQ] = ACTIONS(4230), - [anon_sym_PERCENT_EQ] = ACTIONS(4230), - [anon_sym_PLUS_EQ] = ACTIONS(4230), - [anon_sym_DASH_EQ] = ACTIONS(4230), - [anon_sym_LT_LT_EQ] = ACTIONS(4230), - [anon_sym_GT_GT_EQ] = ACTIONS(4230), - [anon_sym_AMP_EQ] = ACTIONS(4230), - [anon_sym_CARET_EQ] = ACTIONS(4230), - [anon_sym_PIPE_EQ] = ACTIONS(4230), - [anon_sym_AMP] = ACTIONS(4233), - [anon_sym_PIPE_PIPE] = ACTIONS(4236), - [anon_sym_AMP_AMP] = ACTIONS(4236), - [anon_sym_PIPE] = ACTIONS(4233), - [anon_sym_CARET] = ACTIONS(4233), - [anon_sym_EQ_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4245), - [anon_sym_GT_EQ] = ACTIONS(4245), - [anon_sym_LT_LT] = ACTIONS(4248), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_SLASH] = ACTIONS(4218), - [anon_sym_PERCENT] = ACTIONS(4218), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_PLUS_PLUS] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4244), + [anon_sym_STAR_EQ] = ACTIONS(4247), + [anon_sym_SLASH_EQ] = ACTIONS(4247), + [anon_sym_PERCENT_EQ] = ACTIONS(4247), + [anon_sym_PLUS_EQ] = ACTIONS(4247), + [anon_sym_DASH_EQ] = ACTIONS(4247), + [anon_sym_LT_LT_EQ] = ACTIONS(4247), + [anon_sym_GT_GT_EQ] = ACTIONS(4247), + [anon_sym_AMP_EQ] = ACTIONS(4247), + [anon_sym_CARET_EQ] = ACTIONS(4247), + [anon_sym_PIPE_EQ] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE] = ACTIONS(4250), + [anon_sym_CARET] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4256), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_LT_LT] = ACTIONS(4265), + [anon_sym_GT_GT] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4271), [sym_comment] = ACTIONS(123), }, - [1249] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4263), - [anon_sym_RBRACK] = ACTIONS(1111), - [anon_sym_EQ] = ACTIONS(4266), - [anon_sym_COLON] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(4269), - [anon_sym_STAR_EQ] = ACTIONS(4272), - [anon_sym_SLASH_EQ] = ACTIONS(4272), - [anon_sym_PERCENT_EQ] = ACTIONS(4272), - [anon_sym_PLUS_EQ] = ACTIONS(4272), - [anon_sym_DASH_EQ] = ACTIONS(4272), - [anon_sym_LT_LT_EQ] = ACTIONS(4272), - [anon_sym_GT_GT_EQ] = ACTIONS(4272), - [anon_sym_AMP_EQ] = ACTIONS(4272), - [anon_sym_CARET_EQ] = ACTIONS(4272), - [anon_sym_PIPE_EQ] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_CARET] = ACTIONS(4275), - [anon_sym_EQ_EQ] = ACTIONS(4281), - [anon_sym_BANG_EQ] = ACTIONS(4281), - [anon_sym_LT] = ACTIONS(4284), - [anon_sym_GT] = ACTIONS(4284), - [anon_sym_LT_EQ] = ACTIONS(4287), - [anon_sym_GT_EQ] = ACTIONS(4287), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_PLUS_PLUS] = ACTIONS(4293), - [anon_sym_DOT] = ACTIONS(4296), - [anon_sym_DASH_GT] = ACTIONS(4296), + [1253] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(4274), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_RBRACK] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(4286), + [anon_sym_STAR_EQ] = ACTIONS(4289), + [anon_sym_SLASH_EQ] = ACTIONS(4289), + [anon_sym_PERCENT_EQ] = ACTIONS(4289), + [anon_sym_PLUS_EQ] = ACTIONS(4289), + [anon_sym_DASH_EQ] = ACTIONS(4289), + [anon_sym_LT_LT_EQ] = ACTIONS(4289), + [anon_sym_GT_GT_EQ] = ACTIONS(4289), + [anon_sym_AMP_EQ] = ACTIONS(4289), + [anon_sym_CARET_EQ] = ACTIONS(4289), + [anon_sym_PIPE_EQ] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4292), + [anon_sym_CARET] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4298), + [anon_sym_BANG_EQ] = ACTIONS(4298), + [anon_sym_LT] = ACTIONS(4301), + [anon_sym_GT] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4304), + [anon_sym_GT_EQ] = ACTIONS(4304), + [anon_sym_LT_LT] = ACTIONS(4307), + [anon_sym_GT_GT] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4277), + [anon_sym_PERCENT] = ACTIONS(4277), + [anon_sym_DASH_DASH] = ACTIONS(4310), + [anon_sym_PLUS_PLUS] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_DASH_GT] = ACTIONS(4313), [sym_comment] = ACTIONS(123), }, - [1250] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(1123), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4305), - [anon_sym_RBRACK] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_COLON] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(4311), - [anon_sym_STAR_EQ] = ACTIONS(4314), - [anon_sym_SLASH_EQ] = ACTIONS(4314), - [anon_sym_PERCENT_EQ] = ACTIONS(4314), - [anon_sym_PLUS_EQ] = ACTIONS(4314), - [anon_sym_DASH_EQ] = ACTIONS(4314), - [anon_sym_LT_LT_EQ] = ACTIONS(4314), - [anon_sym_GT_GT_EQ] = ACTIONS(4314), - [anon_sym_AMP_EQ] = ACTIONS(4314), - [anon_sym_CARET_EQ] = ACTIONS(4314), - [anon_sym_PIPE_EQ] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4320), - [anon_sym_AMP_AMP] = ACTIONS(4320), - [anon_sym_PIPE] = ACTIONS(4317), - [anon_sym_CARET] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4323), - [anon_sym_LT] = ACTIONS(4326), - [anon_sym_GT] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_LT_LT] = ACTIONS(4332), - [anon_sym_GT_GT] = ACTIONS(4332), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_DASH_DASH] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4335), - [anon_sym_DOT] = ACTIONS(4338), - [anon_sym_DASH_GT] = ACTIONS(4338), + [1254] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(4316), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4322), + [anon_sym_RBRACK] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_QMARK] = ACTIONS(4328), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_LT_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_GT_EQ] = ACTIONS(4331), + [anon_sym_AMP_EQ] = ACTIONS(4331), + [anon_sym_CARET_EQ] = ACTIONS(4331), + [anon_sym_PIPE_EQ] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4334), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4334), + [anon_sym_CARET] = ACTIONS(4334), + [anon_sym_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4346), + [anon_sym_LT_LT] = ACTIONS(4349), + [anon_sym_GT_GT] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4319), + [anon_sym_DASH] = ACTIONS(4319), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4352), + [anon_sym_PLUS_PLUS] = ACTIONS(4352), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4355), [sym_comment] = ACTIONS(123), }, - [1251] = { - [anon_sym_RPAREN] = ACTIONS(4341), + [1255] = { + [anon_sym_RPAREN] = ACTIONS(4358), [sym_comment] = ACTIONS(123), }, - [1252] = { - [sym__expression] = STATE(1245), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1008), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1256] = { + [sym__expression] = STATE(1249), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_initializer_list] = STATE(1012), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1253] = { - [sym__expression] = STATE(1314), - [sym_comma_expression] = STATE(399), + [1257] = { + [sym__expression] = STATE(1318), + [sym_comma_expression] = STATE(403), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59259,25 +59429,25 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1254] = { + [1258] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1313), + [sym__statement] = STATE(1317), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -59309,97 +59479,97 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(1469), - [anon_sym_POUNDinclude] = ACTIONS(1471), - [anon_sym_POUNDdefine] = ACTIONS(1471), - [anon_sym_LF] = ACTIONS(4345), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4345), - [anon_sym_RPAREN] = ACTIONS(4345), - [anon_sym_POUNDif] = ACTIONS(1471), - [anon_sym_POUNDendif] = ACTIONS(1471), - [anon_sym_POUNDifdef] = ACTIONS(1471), - [anon_sym_POUNDifndef] = ACTIONS(1471), - [anon_sym_POUNDelse] = ACTIONS(1471), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_RBRACE] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4345), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_RBRACK] = ACTIONS(4345), - [anon_sym_EQ] = ACTIONS(4370), - [anon_sym_typedef] = 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_COLON] = ACTIONS(4345), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_goto] = ACTIONS(2456), - [anon_sym_QMARK] = ACTIONS(4345), - [anon_sym_STAR_EQ] = ACTIONS(4345), - [anon_sym_SLASH_EQ] = ACTIONS(4345), - [anon_sym_PERCENT_EQ] = ACTIONS(4345), - [anon_sym_PLUS_EQ] = ACTIONS(4345), - [anon_sym_DASH_EQ] = ACTIONS(4345), - [anon_sym_LT_LT_EQ] = ACTIONS(4345), - [anon_sym_GT_GT_EQ] = ACTIONS(4345), - [anon_sym_AMP_EQ] = ACTIONS(4345), - [anon_sym_CARET_EQ] = ACTIONS(4345), - [anon_sym_PIPE_EQ] = ACTIONS(4345), - [anon_sym_AMP] = ACTIONS(4365), - [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_AMP_AMP] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(4373), - [anon_sym_PIPE] = ACTIONS(4370), - [anon_sym_CARET] = ACTIONS(4370), - [anon_sym_TILDE] = ACTIONS(4376), - [anon_sym_EQ_EQ] = ACTIONS(4345), - [anon_sym_BANG_EQ] = ACTIONS(4345), - [anon_sym_LT] = ACTIONS(4370), - [anon_sym_GT] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4345), - [anon_sym_GT_EQ] = ACTIONS(4345), - [anon_sym_LT_LT] = ACTIONS(4370), - [anon_sym_GT_GT] = ACTIONS(4370), - [anon_sym_PLUS] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_SLASH] = ACTIONS(4370), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(4389), - [anon_sym_DOT] = ACTIONS(4345), - [anon_sym_DASH_GT] = ACTIONS(4345), - [sym_number_literal] = ACTIONS(4392), - [sym_char_literal] = ACTIONS(4392), - [sym_string_literal] = ACTIONS(4395), - [sym_identifier] = ACTIONS(4398), + [ts_builtin_sym_end] = ACTIONS(1484), + [anon_sym_POUNDinclude] = ACTIONS(1486), + [anon_sym_POUNDdefine] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RPAREN] = ACTIONS(4362), + [anon_sym_POUNDif] = ACTIONS(1486), + [anon_sym_POUNDendif] = ACTIONS(1486), + [anon_sym_POUNDifdef] = ACTIONS(1486), + [anon_sym_POUNDifndef] = ACTIONS(1486), + [anon_sym_POUNDelse] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(4370), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [sym_function_specifier] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(4362), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2473), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_STAR_EQ] = ACTIONS(4362), + [anon_sym_SLASH_EQ] = ACTIONS(4362), + [anon_sym_PERCENT_EQ] = ACTIONS(4362), + [anon_sym_PLUS_EQ] = ACTIONS(4362), + [anon_sym_DASH_EQ] = ACTIONS(4362), + [anon_sym_LT_LT_EQ] = ACTIONS(4362), + [anon_sym_GT_GT_EQ] = ACTIONS(4362), + [anon_sym_AMP_EQ] = ACTIONS(4362), + [anon_sym_CARET_EQ] = ACTIONS(4362), + [anon_sym_PIPE_EQ] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4382), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_CARET] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_LT_EQ] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4387), + [anon_sym_PERCENT] = ACTIONS(4387), + [anon_sym_DASH_DASH] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4401), + [anon_sym_sizeof] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(4362), + [sym_number_literal] = ACTIONS(4409), + [sym_char_literal] = ACTIONS(4409), + [sym_string_literal] = ACTIONS(4412), + [sym_identifier] = ACTIONS(4415), [sym_comment] = ACTIONS(123), }, - [1255] = { - [sym__expression] = STATE(1268), + [1259] = { + [sym__expression] = STATE(1272), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59417,75 +59587,75 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(4401), - [anon_sym_POUNDinclude] = ACTIONS(4404), - [anon_sym_POUNDdefine] = ACTIONS(4404), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4411), - [anon_sym_POUNDif] = ACTIONS(4404), - [anon_sym_POUNDendif] = ACTIONS(4404), - [anon_sym_POUNDifdef] = ACTIONS(4404), - [anon_sym_POUNDifndef] = ACTIONS(4404), - [anon_sym_POUNDelse] = ACTIONS(4404), - [sym_preproc_directive] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_extern] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_RBRACE] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_static] = ACTIONS(4404), - [anon_sym_typedef] = ACTIONS(4404), - [anon_sym_auto] = ACTIONS(4404), - [anon_sym_register] = ACTIONS(4404), - [anon_sym_const] = ACTIONS(4431), - [anon_sym_restrict] = ACTIONS(4431), - [anon_sym_volatile] = ACTIONS(4431), - [sym_function_specifier] = ACTIONS(4404), - [anon_sym_unsigned] = ACTIONS(4431), - [anon_sym_long] = ACTIONS(4431), - [anon_sym_short] = ACTIONS(4431), - [anon_sym_enum] = ACTIONS(4431), - [anon_sym_struct] = ACTIONS(4431), - [anon_sym_union] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_else] = ACTIONS(4404), - [anon_sym_switch] = ACTIONS(4404), - [anon_sym_case] = ACTIONS(4404), - [anon_sym_default] = ACTIONS(4404), - [anon_sym_while] = ACTIONS(4404), - [anon_sym_do] = ACTIONS(4404), - [anon_sym_for] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_goto] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4427), - [anon_sym_BANG] = ACTIONS(4438), - [anon_sym_TILDE] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4446), - [anon_sym_DASH] = ACTIONS(4446), - [anon_sym_DASH_DASH] = ACTIONS(4450), - [anon_sym_PLUS_PLUS] = ACTIONS(4450), - [anon_sym_sizeof] = ACTIONS(4454), - [sym_number_literal] = ACTIONS(4458), - [sym_char_literal] = ACTIONS(4458), - [sym_string_literal] = ACTIONS(4462), - [sym_identifier] = ACTIONS(4466), + [ts_builtin_sym_end] = ACTIONS(4418), + [anon_sym_POUNDinclude] = ACTIONS(4421), + [anon_sym_POUNDdefine] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4424), + [anon_sym_RPAREN] = ACTIONS(4428), + [anon_sym_POUNDif] = ACTIONS(4421), + [anon_sym_POUNDendif] = ACTIONS(4421), + [anon_sym_POUNDifdef] = ACTIONS(4421), + [anon_sym_POUNDifndef] = ACTIONS(4421), + [anon_sym_POUNDelse] = ACTIONS(4421), + [sym_preproc_directive] = ACTIONS(4430), + [anon_sym_SEMI] = ACTIONS(4433), + [anon_sym_extern] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4444), + [anon_sym_static] = ACTIONS(4421), + [anon_sym_typedef] = ACTIONS(4421), + [anon_sym_auto] = ACTIONS(4421), + [anon_sym_register] = ACTIONS(4421), + [anon_sym_const] = ACTIONS(4448), + [anon_sym_restrict] = ACTIONS(4448), + [anon_sym_volatile] = ACTIONS(4448), + [sym_function_specifier] = ACTIONS(4421), + [anon_sym_unsigned] = ACTIONS(4448), + [anon_sym_long] = ACTIONS(4448), + [anon_sym_short] = ACTIONS(4448), + [anon_sym_enum] = ACTIONS(4448), + [anon_sym_struct] = ACTIONS(4448), + [anon_sym_union] = ACTIONS(4448), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_switch] = ACTIONS(4421), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4421), + [anon_sym_while] = ACTIONS(4421), + [anon_sym_do] = ACTIONS(4421), + [anon_sym_for] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_goto] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(4444), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_TILDE] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_sizeof] = ACTIONS(4471), + [sym_number_literal] = ACTIONS(4475), + [sym_char_literal] = ACTIONS(4475), + [sym_string_literal] = ACTIONS(4479), + [sym_identifier] = ACTIONS(4483), [sym_comment] = ACTIONS(123), }, - [1256] = { + [1260] = { [anon_sym_LF] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(4474), - [anon_sym_COMMA] = ACTIONS(4474), - [anon_sym_RPAREN] = ACTIONS(4474), - [anon_sym_SEMI] = ACTIONS(4483), - [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_COMMA] = ACTIONS(4491), + [anon_sym_RPAREN] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_LBRACE] = ACTIONS(4505), [anon_sym_RBRACE] = ACTIONS(634), [anon_sym_STAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4509), [anon_sym_RBRACK] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(4502), - [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4500), [anon_sym_QMARK] = ACTIONS(634), [anon_sym_STAR_EQ] = ACTIONS(634), [anon_sym_SLASH_EQ] = ACTIONS(634), @@ -59516,13 +59686,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(636), [anon_sym_DASH_DASH] = ACTIONS(634), [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_DOT] = ACTIONS(2991), [anon_sym_DASH_GT] = ACTIONS(634), [sym_comment] = ACTIONS(123), }, - [1257] = { + [1261] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -59535,55 +59705,55 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(1259), + [sym__expression] = STATE(1263), [sym_comma_expression] = STATE(46), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), [anon_sym_goto] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), - [sym_identifier] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3023), [sym_comment] = ACTIONS(123), }, - [1258] = { + [1262] = { [anon_sym_LF] = ACTIONS(375), [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), @@ -59594,7 +59764,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(4508), + [anon_sym_COLON] = ACTIONS(4525), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -59629,54 +59799,54 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1259] = { - [sym_argument_list] = STATE(968), + [1263] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4531), [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4534), [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4540), [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4543), [anon_sym_COLON] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_LT_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_GT_EQ] = ACTIONS(4532), - [anon_sym_AMP_EQ] = ACTIONS(4532), - [anon_sym_CARET_EQ] = ACTIONS(4532), - [anon_sym_PIPE_EQ] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4535), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym_EQ_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4544), - [anon_sym_GT] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4547), - [anon_sym_GT_EQ] = ACTIONS(4547), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_PLUS_PLUS] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_AMP_AMP] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4561), + [anon_sym_GT] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4564), + [anon_sym_GT_EQ] = ACTIONS(4564), + [anon_sym_LT_LT] = ACTIONS(4567), + [anon_sym_GT_GT] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_DASH_GT] = ACTIONS(4573), [sym_comment] = ACTIONS(123), }, - [1260] = { + [1264] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -59701,7 +59871,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1311), + [sym_type_name] = STATE(1315), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -59731,9 +59901,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1261] = { + [1265] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1310), + [sym__statement] = STATE(1314), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -59769,13 +59939,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -59791,11 +59961,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1262] = { - [sym__expression] = STATE(1308), + [1266] = { + [sym__expression] = STATE(1312), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59814,7 +59984,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(4559), + [anon_sym_RPAREN] = ACTIONS(4576), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -59830,8 +60000,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1263] = { - [sym__expression] = STATE(1306), + [1267] = { + [sym__expression] = STATE(1310), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59849,24 +60019,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1264] = { - [sym__expression] = STATE(1305), + [1268] = { + [sym__expression] = STATE(1309), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59884,24 +60054,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1265] = { - [sym__expression] = STATE(1304), + [1269] = { + [sym__expression] = STATE(1308), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59919,24 +60089,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1266] = { - [sym__expression] = STATE(1303), + [1270] = { + [sym__expression] = STATE(1307), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59954,24 +60124,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1267] = { - [sym__expression] = STATE(1299), + [1271] = { + [sym__expression] = STATE(1303), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -59989,69 +60159,69 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1268] = { + [1272] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1279), + [aux_sym_for_statement_repeat1] = STATE(1283), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4563), - [anon_sym_SEMI] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4580), + [anon_sym_SEMI] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4584), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(4569), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_LT_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_GT_EQ] = ACTIONS(4573), - [anon_sym_AMP_EQ] = ACTIONS(4573), - [anon_sym_CARET_EQ] = ACTIONS(4573), - [anon_sym_PIPE_EQ] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_PIPE_PIPE] = ACTIONS(4577), - [anon_sym_AMP_AMP] = ACTIONS(4577), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(4575), - [anon_sym_EQ_EQ] = ACTIONS(4579), - [anon_sym_BANG_EQ] = ACTIONS(4579), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4581), - [anon_sym_LT_EQ] = ACTIONS(4583), - [anon_sym_GT_EQ] = ACTIONS(4583), - [anon_sym_LT_LT] = ACTIONS(4585), - [anon_sym_GT_GT] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4590), + [anon_sym_SLASH_EQ] = ACTIONS(4590), + [anon_sym_PERCENT_EQ] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4590), + [anon_sym_DASH_EQ] = ACTIONS(4590), + [anon_sym_LT_LT_EQ] = ACTIONS(4590), + [anon_sym_GT_GT_EQ] = ACTIONS(4590), + [anon_sym_AMP_EQ] = ACTIONS(4590), + [anon_sym_CARET_EQ] = ACTIONS(4590), + [anon_sym_PIPE_EQ] = ACTIONS(4590), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_PIPE_PIPE] = ACTIONS(4594), + [anon_sym_AMP_AMP] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1269] = { + [1273] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1297), + [sym__statement] = STATE(1301), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -60087,13 +60257,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -60109,11 +60279,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1270] = { - [sym__expression] = STATE(1293), + [1274] = { + [sym__expression] = STATE(1297), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60132,7 +60302,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4604), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -60148,8 +60318,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1271] = { - [sym__expression] = STATE(1282), + [1275] = { + [sym__expression] = STATE(1286), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60167,24 +60337,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1272] = { - [sym__expression] = STATE(1288), + [1276] = { + [sym__expression] = STATE(1292), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60202,24 +60372,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1273] = { - [sym__expression] = STATE(1289), + [1277] = { + [sym__expression] = STATE(1293), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60253,8 +60423,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1274] = { - [sym__expression] = STATE(1286), + [1278] = { + [sym__expression] = STATE(1290), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60272,24 +60442,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1275] = { - [sym__expression] = STATE(1287), + [1279] = { + [sym__expression] = STATE(1291), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60307,24 +60477,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1276] = { - [sym__expression] = STATE(1285), + [1280] = { + [sym__expression] = STATE(1289), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60342,24 +60512,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1277] = { - [sym__expression] = STATE(1284), + [1281] = { + [sym__expression] = STATE(1288), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60377,24 +60547,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1278] = { - [sym__expression] = STATE(1283), + [1282] = { + [sym__expression] = STATE(1287), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60412,30 +60582,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1279] = { + [1283] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4589), + [anon_sym_RPAREN] = ACTIONS(4606), [sym_comment] = ACTIONS(123), }, - [1280] = { + [1284] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1281), + [sym__statement] = STATE(1285), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -60471,13 +60641,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -60493,373 +60663,373 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1281] = { - [ts_builtin_sym_end] = ACTIONS(4591), - [anon_sym_POUNDinclude] = ACTIONS(4594), - [anon_sym_POUNDdefine] = ACTIONS(4594), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_POUNDif] = ACTIONS(4594), - [anon_sym_POUNDendif] = ACTIONS(4594), - [anon_sym_POUNDifdef] = ACTIONS(4594), - [anon_sym_POUNDifndef] = ACTIONS(4594), - [anon_sym_POUNDelse] = ACTIONS(4594), - [sym_preproc_directive] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_extern] = ACTIONS(4594), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4594), - [anon_sym_typedef] = ACTIONS(4594), - [anon_sym_auto] = ACTIONS(4594), - [anon_sym_register] = ACTIONS(4594), - [anon_sym_const] = ACTIONS(4594), - [anon_sym_restrict] = ACTIONS(4594), - [anon_sym_volatile] = ACTIONS(4594), - [sym_function_specifier] = ACTIONS(4594), - [anon_sym_unsigned] = ACTIONS(4594), - [anon_sym_long] = ACTIONS(4594), - [anon_sym_short] = ACTIONS(4594), - [anon_sym_enum] = ACTIONS(4594), - [anon_sym_struct] = ACTIONS(4594), - [anon_sym_union] = ACTIONS(4594), - [anon_sym_if] = ACTIONS(4594), - [anon_sym_else] = ACTIONS(4594), - [anon_sym_switch] = ACTIONS(4594), - [anon_sym_case] = ACTIONS(4594), - [anon_sym_default] = ACTIONS(4594), - [anon_sym_while] = ACTIONS(4594), - [anon_sym_do] = ACTIONS(4594), - [anon_sym_for] = ACTIONS(4594), - [anon_sym_return] = ACTIONS(4594), - [anon_sym_break] = ACTIONS(4594), - [anon_sym_continue] = ACTIONS(4594), - [anon_sym_goto] = ACTIONS(4594), - [anon_sym_AMP] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4594), - [anon_sym_DASH] = ACTIONS(4594), - [anon_sym_DASH_DASH] = ACTIONS(4591), - [anon_sym_PLUS_PLUS] = ACTIONS(4591), - [anon_sym_sizeof] = ACTIONS(4594), - [sym_number_literal] = ACTIONS(4594), - [sym_char_literal] = ACTIONS(4594), - [sym_string_literal] = ACTIONS(4591), - [sym_identifier] = ACTIONS(4597), + [1285] = { + [ts_builtin_sym_end] = ACTIONS(4608), + [anon_sym_POUNDinclude] = ACTIONS(4611), + [anon_sym_POUNDdefine] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(4608), + [anon_sym_POUNDif] = ACTIONS(4611), + [anon_sym_POUNDendif] = ACTIONS(4611), + [anon_sym_POUNDifdef] = ACTIONS(4611), + [anon_sym_POUNDifndef] = ACTIONS(4611), + [anon_sym_POUNDelse] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4614), + [anon_sym_SEMI] = ACTIONS(4608), + [anon_sym_extern] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4608), + [anon_sym_RBRACE] = ACTIONS(4608), + [anon_sym_STAR] = ACTIONS(4608), + [anon_sym_static] = ACTIONS(4611), + [anon_sym_typedef] = ACTIONS(4611), + [anon_sym_auto] = ACTIONS(4611), + [anon_sym_register] = ACTIONS(4611), + [anon_sym_const] = ACTIONS(4611), + [anon_sym_restrict] = ACTIONS(4611), + [anon_sym_volatile] = ACTIONS(4611), + [sym_function_specifier] = ACTIONS(4611), + [anon_sym_unsigned] = ACTIONS(4611), + [anon_sym_long] = ACTIONS(4611), + [anon_sym_short] = ACTIONS(4611), + [anon_sym_enum] = ACTIONS(4611), + [anon_sym_struct] = ACTIONS(4611), + [anon_sym_union] = ACTIONS(4611), + [anon_sym_if] = ACTIONS(4611), + [anon_sym_else] = ACTIONS(4611), + [anon_sym_switch] = ACTIONS(4611), + [anon_sym_case] = ACTIONS(4611), + [anon_sym_default] = ACTIONS(4611), + [anon_sym_while] = ACTIONS(4611), + [anon_sym_do] = ACTIONS(4611), + [anon_sym_for] = ACTIONS(4611), + [anon_sym_return] = ACTIONS(4611), + [anon_sym_break] = ACTIONS(4611), + [anon_sym_continue] = ACTIONS(4611), + [anon_sym_goto] = ACTIONS(4611), + [anon_sym_AMP] = ACTIONS(4608), + [anon_sym_BANG] = ACTIONS(4608), + [anon_sym_TILDE] = ACTIONS(4608), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4611), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_PLUS_PLUS] = ACTIONS(4608), + [anon_sym_sizeof] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [sym_char_literal] = ACTIONS(4611), + [sym_string_literal] = ACTIONS(4608), + [sym_identifier] = ACTIONS(4614), [sym_comment] = ACTIONS(123), }, - [1282] = { + [1286] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4617), [anon_sym_COMMA] = ACTIONS(540), [anon_sym_RPAREN] = ACTIONS(540), [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4606), - [anon_sym_EQ] = ACTIONS(4609), - [anon_sym_QMARK] = ACTIONS(4612), - [anon_sym_STAR_EQ] = ACTIONS(4615), - [anon_sym_SLASH_EQ] = ACTIONS(4615), - [anon_sym_PERCENT_EQ] = ACTIONS(4615), - [anon_sym_PLUS_EQ] = ACTIONS(4615), - [anon_sym_DASH_EQ] = ACTIONS(4615), - [anon_sym_LT_LT_EQ] = ACTIONS(4615), - [anon_sym_GT_GT_EQ] = ACTIONS(4615), - [anon_sym_AMP_EQ] = ACTIONS(4615), - [anon_sym_CARET_EQ] = ACTIONS(4615), - [anon_sym_PIPE_EQ] = ACTIONS(4615), - [anon_sym_AMP] = ACTIONS(4618), - [anon_sym_PIPE_PIPE] = ACTIONS(4621), - [anon_sym_AMP_AMP] = ACTIONS(4621), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_CARET] = ACTIONS(4618), - [anon_sym_EQ_EQ] = ACTIONS(4624), - [anon_sym_BANG_EQ] = ACTIONS(4624), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4627), - [anon_sym_LT_EQ] = ACTIONS(4630), - [anon_sym_GT_EQ] = ACTIONS(4630), - [anon_sym_LT_LT] = ACTIONS(4633), - [anon_sym_GT_GT] = ACTIONS(4633), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4603), - [anon_sym_SLASH] = ACTIONS(4603), - [anon_sym_PERCENT] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_DASH_GT] = ACTIONS(4639), + [anon_sym_STAR] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_QMARK] = ACTIONS(4629), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_LT_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_GT_EQ] = ACTIONS(4632), + [anon_sym_AMP_EQ] = ACTIONS(4632), + [anon_sym_CARET_EQ] = ACTIONS(4632), + [anon_sym_PIPE_EQ] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_CARET] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4641), + [anon_sym_BANG_EQ] = ACTIONS(4641), + [anon_sym_LT] = ACTIONS(4644), + [anon_sym_GT] = ACTIONS(4644), + [anon_sym_LT_EQ] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4647), + [anon_sym_LT_LT] = ACTIONS(4650), + [anon_sym_GT_GT] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4620), + [anon_sym_DASH] = ACTIONS(4620), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4653), + [anon_sym_PLUS_PLUS] = ACTIONS(4653), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(4656), [sym_comment] = ACTIONS(123), }, - [1283] = { + [1287] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4659), [anon_sym_COMMA] = ACTIONS(544), [anon_sym_RPAREN] = ACTIONS(544), [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(4651), - [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(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4645), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_DASH_DASH] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4678), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_DASH_GT] = ACTIONS(4681), + [anon_sym_STAR] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_QMARK] = ACTIONS(4671), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_LT_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_GT_EQ] = ACTIONS(4674), + [anon_sym_AMP_EQ] = ACTIONS(4674), + [anon_sym_CARET_EQ] = ACTIONS(4674), + [anon_sym_PIPE_EQ] = ACTIONS(4674), + [anon_sym_AMP] = ACTIONS(4677), + [anon_sym_PIPE_PIPE] = ACTIONS(4680), + [anon_sym_AMP_AMP] = ACTIONS(4680), + [anon_sym_PIPE] = ACTIONS(4677), + [anon_sym_CARET] = ACTIONS(4677), + [anon_sym_EQ_EQ] = ACTIONS(4683), + [anon_sym_BANG_EQ] = ACTIONS(4683), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_LT_EQ] = ACTIONS(4689), + [anon_sym_GT_EQ] = ACTIONS(4689), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4662), + [anon_sym_SLASH] = ACTIONS(4662), + [anon_sym_PERCENT] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4695), + [anon_sym_PLUS_PLUS] = ACTIONS(4695), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4698), [sym_comment] = ACTIONS(123), }, - [1284] = { + [1288] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4701), [anon_sym_COMMA] = ACTIONS(548), [anon_sym_RPAREN] = ACTIONS(548), [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4690), - [anon_sym_EQ] = ACTIONS(4693), - [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(4687), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_PERCENT] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DOT] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_QMARK] = ACTIONS(4713), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_PERCENT_EQ] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_LT_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_GT_EQ] = ACTIONS(4716), + [anon_sym_AMP_EQ] = ACTIONS(4716), + [anon_sym_CARET_EQ] = ACTIONS(4716), + [anon_sym_PIPE_EQ] = ACTIONS(4716), + [anon_sym_AMP] = ACTIONS(4719), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4719), + [anon_sym_CARET] = ACTIONS(4719), + [anon_sym_EQ_EQ] = ACTIONS(4725), + [anon_sym_BANG_EQ] = ACTIONS(4725), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4731), + [anon_sym_GT_EQ] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4734), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_DASH_GT] = ACTIONS(4740), [sym_comment] = ACTIONS(123), }, - [1285] = { + [1289] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4743), [anon_sym_COMMA] = ACTIONS(552), [anon_sym_RPAREN] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_QMARK] = ACTIONS(4738), - [anon_sym_STAR_EQ] = ACTIONS(4741), - [anon_sym_SLASH_EQ] = ACTIONS(4741), - [anon_sym_PERCENT_EQ] = ACTIONS(4741), - [anon_sym_PLUS_EQ] = ACTIONS(4741), - [anon_sym_DASH_EQ] = ACTIONS(4741), - [anon_sym_LT_LT_EQ] = ACTIONS(4741), - [anon_sym_GT_GT_EQ] = ACTIONS(4741), - [anon_sym_AMP_EQ] = ACTIONS(4741), - [anon_sym_CARET_EQ] = ACTIONS(4741), - [anon_sym_PIPE_EQ] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4744), - [anon_sym_PIPE_PIPE] = ACTIONS(4747), - [anon_sym_AMP_AMP] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4744), - [anon_sym_CARET] = ACTIONS(4744), - [anon_sym_EQ_EQ] = ACTIONS(4750), - [anon_sym_BANG_EQ] = ACTIONS(4750), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_LT_LT] = ACTIONS(4759), - [anon_sym_GT_GT] = ACTIONS(4759), - [anon_sym_PLUS] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_PERCENT] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4762), - [anon_sym_PLUS_PLUS] = ACTIONS(4762), - [anon_sym_DOT] = ACTIONS(4765), - [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4752), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_STAR_EQ] = ACTIONS(4758), + [anon_sym_SLASH_EQ] = ACTIONS(4758), + [anon_sym_PERCENT_EQ] = ACTIONS(4758), + [anon_sym_PLUS_EQ] = ACTIONS(4758), + [anon_sym_DASH_EQ] = ACTIONS(4758), + [anon_sym_LT_LT_EQ] = ACTIONS(4758), + [anon_sym_GT_GT_EQ] = ACTIONS(4758), + [anon_sym_AMP_EQ] = ACTIONS(4758), + [anon_sym_CARET_EQ] = ACTIONS(4758), + [anon_sym_PIPE_EQ] = ACTIONS(4758), + [anon_sym_AMP] = ACTIONS(4761), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_CARET] = ACTIONS(4761), + [anon_sym_EQ_EQ] = ACTIONS(4767), + [anon_sym_BANG_EQ] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4776), + [anon_sym_GT_GT] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_DASH_DASH] = ACTIONS(4779), + [anon_sym_PLUS_PLUS] = ACTIONS(4779), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_DASH_GT] = ACTIONS(4782), [sym_comment] = ACTIONS(123), }, - [1286] = { + [1290] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4785), [anon_sym_COMMA] = ACTIONS(556), [anon_sym_RPAREN] = ACTIONS(556), [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_QMARK] = ACTIONS(4780), - [anon_sym_STAR_EQ] = ACTIONS(4783), - [anon_sym_SLASH_EQ] = ACTIONS(4783), - [anon_sym_PERCENT_EQ] = ACTIONS(4783), - [anon_sym_PLUS_EQ] = ACTIONS(4783), - [anon_sym_DASH_EQ] = ACTIONS(4783), - [anon_sym_LT_LT_EQ] = ACTIONS(4783), - [anon_sym_GT_GT_EQ] = ACTIONS(4783), - [anon_sym_AMP_EQ] = ACTIONS(4783), - [anon_sym_CARET_EQ] = ACTIONS(4783), - [anon_sym_PIPE_EQ] = ACTIONS(4783), - [anon_sym_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4789), - [anon_sym_AMP_AMP] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4792), - [anon_sym_BANG_EQ] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_LT_EQ] = ACTIONS(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_LT_LT] = ACTIONS(4801), - [anon_sym_GT_GT] = ACTIONS(4801), - [anon_sym_PLUS] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4771), - [anon_sym_SLASH] = ACTIONS(4771), - [anon_sym_PERCENT] = ACTIONS(4771), - [anon_sym_DASH_DASH] = ACTIONS(4804), - [anon_sym_PLUS_PLUS] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4791), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_QMARK] = ACTIONS(4797), + [anon_sym_STAR_EQ] = ACTIONS(4800), + [anon_sym_SLASH_EQ] = ACTIONS(4800), + [anon_sym_PERCENT_EQ] = ACTIONS(4800), + [anon_sym_PLUS_EQ] = ACTIONS(4800), + [anon_sym_DASH_EQ] = ACTIONS(4800), + [anon_sym_LT_LT_EQ] = ACTIONS(4800), + [anon_sym_GT_GT_EQ] = ACTIONS(4800), + [anon_sym_AMP_EQ] = ACTIONS(4800), + [anon_sym_CARET_EQ] = ACTIONS(4800), + [anon_sym_PIPE_EQ] = ACTIONS(4800), + [anon_sym_AMP] = ACTIONS(4803), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE] = ACTIONS(4803), + [anon_sym_CARET] = ACTIONS(4803), + [anon_sym_EQ_EQ] = ACTIONS(4809), + [anon_sym_BANG_EQ] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4815), + [anon_sym_GT_EQ] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(4818), + [anon_sym_GT_GT] = ACTIONS(4818), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_DASH_GT] = ACTIONS(4824), [sym_comment] = ACTIONS(123), }, - [1287] = { + [1291] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4827), [anon_sym_COMMA] = ACTIONS(560), [anon_sym_RPAREN] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(4813), - [anon_sym_LBRACK] = ACTIONS(4816), - [anon_sym_EQ] = ACTIONS(4819), - [anon_sym_QMARK] = ACTIONS(4822), - [anon_sym_STAR_EQ] = ACTIONS(4825), - [anon_sym_SLASH_EQ] = ACTIONS(4825), - [anon_sym_PERCENT_EQ] = ACTIONS(4825), - [anon_sym_PLUS_EQ] = ACTIONS(4825), - [anon_sym_DASH_EQ] = ACTIONS(4825), - [anon_sym_LT_LT_EQ] = ACTIONS(4825), - [anon_sym_GT_GT_EQ] = ACTIONS(4825), - [anon_sym_AMP_EQ] = ACTIONS(4825), - [anon_sym_CARET_EQ] = ACTIONS(4825), - [anon_sym_PIPE_EQ] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4828), - [anon_sym_PIPE_PIPE] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4831), - [anon_sym_PIPE] = ACTIONS(4828), - [anon_sym_CARET] = ACTIONS(4828), - [anon_sym_EQ_EQ] = ACTIONS(4834), - [anon_sym_BANG_EQ] = ACTIONS(4834), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_LT_EQ] = ACTIONS(4840), - [anon_sym_GT_EQ] = ACTIONS(4840), - [anon_sym_LT_LT] = ACTIONS(4843), - [anon_sym_GT_GT] = ACTIONS(4843), - [anon_sym_PLUS] = ACTIONS(4813), - [anon_sym_DASH] = ACTIONS(4813), - [anon_sym_SLASH] = ACTIONS(4813), - [anon_sym_PERCENT] = ACTIONS(4813), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_QMARK] = ACTIONS(4839), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_LT_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_GT_EQ] = ACTIONS(4842), + [anon_sym_AMP_EQ] = ACTIONS(4842), + [anon_sym_CARET_EQ] = ACTIONS(4842), + [anon_sym_PIPE_EQ] = ACTIONS(4842), + [anon_sym_AMP] = ACTIONS(4845), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym_EQ_EQ] = ACTIONS(4851), + [anon_sym_BANG_EQ] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4854), + [anon_sym_GT] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4857), + [anon_sym_GT_EQ] = ACTIONS(4857), + [anon_sym_LT_LT] = ACTIONS(4860), + [anon_sym_GT_GT] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4830), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_SLASH] = ACTIONS(4830), + [anon_sym_PERCENT] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_PLUS_PLUS] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_DASH_GT] = ACTIONS(4866), [sym_comment] = ACTIONS(123), }, - [1288] = { + [1292] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4869), [anon_sym_COMMA] = ACTIONS(564), [anon_sym_RPAREN] = ACTIONS(564), [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_QMARK] = ACTIONS(4864), - [anon_sym_STAR_EQ] = ACTIONS(4867), - [anon_sym_SLASH_EQ] = ACTIONS(4867), - [anon_sym_PERCENT_EQ] = ACTIONS(4867), - [anon_sym_PLUS_EQ] = ACTIONS(4867), - [anon_sym_DASH_EQ] = ACTIONS(4867), - [anon_sym_LT_LT_EQ] = ACTIONS(4867), - [anon_sym_GT_GT_EQ] = ACTIONS(4867), - [anon_sym_AMP_EQ] = ACTIONS(4867), - [anon_sym_CARET_EQ] = ACTIONS(4867), - [anon_sym_PIPE_EQ] = ACTIONS(4867), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_CARET] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4882), - [anon_sym_GT_EQ] = ACTIONS(4882), - [anon_sym_LT_LT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_PLUS] = ACTIONS(4855), - [anon_sym_DASH] = ACTIONS(4855), - [anon_sym_SLASH] = ACTIONS(4855), - [anon_sym_PERCENT] = ACTIONS(4855), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DASH_GT] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_QMARK] = ACTIONS(4881), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_PERCENT_EQ] = ACTIONS(4884), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_LT_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_GT_EQ] = ACTIONS(4884), + [anon_sym_AMP_EQ] = ACTIONS(4884), + [anon_sym_CARET_EQ] = ACTIONS(4884), + [anon_sym_PIPE_EQ] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_LT_EQ] = ACTIONS(4899), + [anon_sym_GT_EQ] = ACTIONS(4899), + [anon_sym_LT_LT] = ACTIONS(4902), + [anon_sym_GT_GT] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4905), + [anon_sym_PLUS_PLUS] = ACTIONS(4905), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4908), [sym_comment] = ACTIONS(123), }, - [1289] = { + [1293] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(4894), + [anon_sym_COLON] = ACTIONS(4911), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -60894,8 +61064,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1290] = { - [sym__expression] = STATE(1291), + [1294] = { + [sym__expression] = STATE(1295), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -60913,68 +61083,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1291] = { + [1295] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4913), [anon_sym_COMMA] = ACTIONS(600), [anon_sym_RPAREN] = ACTIONS(600), [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_STAR_EQ] = ACTIONS(4911), - [anon_sym_SLASH_EQ] = ACTIONS(4911), - [anon_sym_PERCENT_EQ] = ACTIONS(4911), - [anon_sym_PLUS_EQ] = ACTIONS(4911), - [anon_sym_DASH_EQ] = ACTIONS(4911), - [anon_sym_LT_LT_EQ] = ACTIONS(4911), - [anon_sym_GT_GT_EQ] = ACTIONS(4911), - [anon_sym_AMP_EQ] = ACTIONS(4911), - [anon_sym_CARET_EQ] = ACTIONS(4911), - [anon_sym_PIPE_EQ] = ACTIONS(4911), - [anon_sym_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4917), - [anon_sym_AMP_AMP] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4914), - [anon_sym_CARET] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_LT_LT] = ACTIONS(4929), - [anon_sym_GT_GT] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4899), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_SLASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_DASH_GT] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(4925), + [anon_sym_STAR_EQ] = ACTIONS(4928), + [anon_sym_SLASH_EQ] = ACTIONS(4928), + [anon_sym_PERCENT_EQ] = ACTIONS(4928), + [anon_sym_PLUS_EQ] = ACTIONS(4928), + [anon_sym_DASH_EQ] = ACTIONS(4928), + [anon_sym_LT_LT_EQ] = ACTIONS(4928), + [anon_sym_GT_GT_EQ] = ACTIONS(4928), + [anon_sym_AMP_EQ] = ACTIONS(4928), + [anon_sym_CARET_EQ] = ACTIONS(4928), + [anon_sym_PIPE_EQ] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4931), + [anon_sym_PIPE_PIPE] = ACTIONS(4934), + [anon_sym_AMP_AMP] = ACTIONS(4934), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_CARET] = ACTIONS(4931), + [anon_sym_EQ_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_LT_EQ] = ACTIONS(4943), + [anon_sym_GT_EQ] = ACTIONS(4943), + [anon_sym_LT_LT] = ACTIONS(4946), + [anon_sym_GT_GT] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4949), + [anon_sym_PLUS_PLUS] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), [sym_comment] = ACTIONS(123), }, - [1292] = { + [1296] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(519), + [sym__statement] = STATE(523), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -61010,13 +61180,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -61032,15 +61202,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1293] = { + [1297] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1295), + [aux_sym_for_statement_repeat1] = STATE(1299), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4955), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -61078,9 +61248,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1294] = { + [1298] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(518), + [sym__statement] = STATE(522), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -61116,13 +61286,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -61138,17 +61308,17 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1295] = { + [1299] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4940), + [anon_sym_RPAREN] = ACTIONS(4957), [sym_comment] = ACTIONS(123), }, - [1296] = { + [1300] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(517), + [sym__statement] = STATE(521), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -61184,13 +61354,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -61206,66 +61376,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1297] = { - [ts_builtin_sym_end] = ACTIONS(4942), - [anon_sym_POUNDinclude] = ACTIONS(4945), - [anon_sym_POUNDdefine] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_POUNDif] = ACTIONS(4945), - [anon_sym_POUNDendif] = ACTIONS(4945), - [anon_sym_POUNDifdef] = ACTIONS(4945), - [anon_sym_POUNDifndef] = ACTIONS(4945), - [anon_sym_POUNDelse] = ACTIONS(4945), - [sym_preproc_directive] = ACTIONS(4948), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_extern] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_static] = ACTIONS(4945), - [anon_sym_typedef] = ACTIONS(4945), - [anon_sym_auto] = ACTIONS(4945), - [anon_sym_register] = ACTIONS(4945), - [anon_sym_const] = ACTIONS(4945), - [anon_sym_restrict] = ACTIONS(4945), - [anon_sym_volatile] = ACTIONS(4945), - [sym_function_specifier] = ACTIONS(4945), - [anon_sym_unsigned] = ACTIONS(4945), - [anon_sym_long] = ACTIONS(4945), - [anon_sym_short] = ACTIONS(4945), - [anon_sym_enum] = ACTIONS(4945), - [anon_sym_struct] = ACTIONS(4945), - [anon_sym_union] = ACTIONS(4945), - [anon_sym_if] = ACTIONS(4945), - [anon_sym_else] = ACTIONS(4945), - [anon_sym_switch] = ACTIONS(4945), - [anon_sym_case] = ACTIONS(4945), - [anon_sym_default] = ACTIONS(4945), - [anon_sym_while] = ACTIONS(4945), - [anon_sym_do] = ACTIONS(4945), - [anon_sym_for] = ACTIONS(4945), - [anon_sym_return] = ACTIONS(4945), - [anon_sym_break] = ACTIONS(4945), - [anon_sym_continue] = ACTIONS(4945), - [anon_sym_goto] = ACTIONS(4945), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_BANG] = ACTIONS(4942), - [anon_sym_TILDE] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_sizeof] = ACTIONS(4945), - [sym_number_literal] = ACTIONS(4945), - [sym_char_literal] = ACTIONS(4945), - [sym_string_literal] = ACTIONS(4942), - [sym_identifier] = ACTIONS(4948), + [1301] = { + [ts_builtin_sym_end] = ACTIONS(4959), + [anon_sym_POUNDinclude] = ACTIONS(4962), + [anon_sym_POUNDdefine] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_POUNDif] = ACTIONS(4962), + [anon_sym_POUNDendif] = ACTIONS(4962), + [anon_sym_POUNDifdef] = ACTIONS(4962), + [anon_sym_POUNDifndef] = ACTIONS(4962), + [anon_sym_POUNDelse] = ACTIONS(4962), + [sym_preproc_directive] = ACTIONS(4965), + [anon_sym_SEMI] = ACTIONS(4959), + [anon_sym_extern] = ACTIONS(4962), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_static] = ACTIONS(4962), + [anon_sym_typedef] = ACTIONS(4962), + [anon_sym_auto] = ACTIONS(4962), + [anon_sym_register] = ACTIONS(4962), + [anon_sym_const] = ACTIONS(4962), + [anon_sym_restrict] = ACTIONS(4962), + [anon_sym_volatile] = ACTIONS(4962), + [sym_function_specifier] = ACTIONS(4962), + [anon_sym_unsigned] = ACTIONS(4962), + [anon_sym_long] = ACTIONS(4962), + [anon_sym_short] = ACTIONS(4962), + [anon_sym_enum] = ACTIONS(4962), + [anon_sym_struct] = ACTIONS(4962), + [anon_sym_union] = ACTIONS(4962), + [anon_sym_if] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_switch] = ACTIONS(4962), + [anon_sym_case] = ACTIONS(4962), + [anon_sym_default] = ACTIONS(4962), + [anon_sym_while] = ACTIONS(4962), + [anon_sym_do] = ACTIONS(4962), + [anon_sym_for] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4962), + [anon_sym_continue] = ACTIONS(4962), + [anon_sym_goto] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_TILDE] = ACTIONS(4959), + [anon_sym_PLUS] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4959), + [anon_sym_sizeof] = ACTIONS(4962), + [sym_number_literal] = ACTIONS(4962), + [sym_char_literal] = ACTIONS(4962), + [sym_string_literal] = ACTIONS(4959), + [sym_identifier] = ACTIONS(4965), [sym_comment] = ACTIONS(123), }, - [1298] = { + [1302] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -61290,7 +61460,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1300), + [sym_type_name] = STATE(1304), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -61320,55 +61490,55 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1299] = { + [1303] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4968), [anon_sym_COMMA] = ACTIONS(710), [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4963), - [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(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4972), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4978), - [anon_sym_GT] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_LT_LT] = ACTIONS(4984), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym_PLUS] = ACTIONS(4954), - [anon_sym_DASH] = ACTIONS(4954), - [anon_sym_SLASH] = ACTIONS(4954), - [anon_sym_PERCENT] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_STAR_EQ] = ACTIONS(4983), + [anon_sym_SLASH_EQ] = ACTIONS(4983), + [anon_sym_PERCENT_EQ] = ACTIONS(4983), + [anon_sym_PLUS_EQ] = ACTIONS(4983), + [anon_sym_DASH_EQ] = ACTIONS(4983), + [anon_sym_LT_LT_EQ] = ACTIONS(4983), + [anon_sym_GT_GT_EQ] = ACTIONS(4983), + [anon_sym_AMP_EQ] = ACTIONS(4983), + [anon_sym_CARET_EQ] = ACTIONS(4983), + [anon_sym_PIPE_EQ] = ACTIONS(4983), + [anon_sym_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4989), + [anon_sym_AMP_AMP] = ACTIONS(4989), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_CARET] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(5001), + [anon_sym_GT_GT] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4971), + [anon_sym_SLASH] = ACTIONS(4971), + [anon_sym_PERCENT] = ACTIONS(4971), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), [sym_comment] = ACTIONS(123), }, - [1300] = { - [anon_sym_RPAREN] = ACTIONS(4993), + [1304] = { + [anon_sym_RPAREN] = ACTIONS(5010), [sym_comment] = ACTIONS(123), }, - [1301] = { - [sym__expression] = STATE(1302), + [1305] = { + [sym__expression] = STATE(1306), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -61385,275 +61555,275 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(5001), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_sizeof] = ACTIONS(2285), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_PLUS_PLUS] = ACTIONS(5023), + [anon_sym_sizeof] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1302] = { + [1306] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5018), - [anon_sym_QMARK] = ACTIONS(5021), - [anon_sym_STAR_EQ] = ACTIONS(5024), - [anon_sym_SLASH_EQ] = ACTIONS(5024), - [anon_sym_PERCENT_EQ] = ACTIONS(5024), - [anon_sym_PLUS_EQ] = ACTIONS(5024), - [anon_sym_DASH_EQ] = ACTIONS(5024), - [anon_sym_LT_LT_EQ] = ACTIONS(5024), - [anon_sym_GT_GT_EQ] = ACTIONS(5024), - [anon_sym_AMP_EQ] = ACTIONS(5024), - [anon_sym_CARET_EQ] = ACTIONS(5024), - [anon_sym_PIPE_EQ] = ACTIONS(5024), - [anon_sym_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5027), - [anon_sym_EQ_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5036), - [anon_sym_GT] = ACTIONS(5036), - [anon_sym_LT_EQ] = ACTIONS(5039), - [anon_sym_GT_EQ] = ACTIONS(5039), - [anon_sym_LT_LT] = ACTIONS(5042), - [anon_sym_GT_GT] = ACTIONS(5042), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_DASH_GT] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5050), + [anon_sym_BANG_EQ] = ACTIONS(5050), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_LT] = ACTIONS(5059), + [anon_sym_GT_GT] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_DASH_GT] = ACTIONS(5065), [sym_comment] = ACTIONS(123), }, - [1303] = { + [1307] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(5060), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_STAR_EQ] = ACTIONS(5066), - [anon_sym_SLASH_EQ] = ACTIONS(5066), - [anon_sym_PERCENT_EQ] = ACTIONS(5066), - [anon_sym_PLUS_EQ] = ACTIONS(5066), - [anon_sym_DASH_EQ] = ACTIONS(5066), - [anon_sym_LT_LT_EQ] = ACTIONS(5066), - [anon_sym_GT_GT_EQ] = ACTIONS(5066), - [anon_sym_AMP_EQ] = ACTIONS(5066), - [anon_sym_CARET_EQ] = ACTIONS(5066), - [anon_sym_PIPE_EQ] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_LT_EQ] = ACTIONS(5081), - [anon_sym_GT_EQ] = ACTIONS(5081), - [anon_sym_LT_LT] = ACTIONS(5084), - [anon_sym_GT_GT] = ACTIONS(5084), - [anon_sym_PLUS] = ACTIONS(5054), - [anon_sym_DASH] = ACTIONS(5054), - [anon_sym_SLASH] = ACTIONS(5054), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_DASH_DASH] = ACTIONS(5087), - [anon_sym_PLUS_PLUS] = ACTIONS(5087), - [anon_sym_DOT] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_STAR_EQ] = ACTIONS(5083), + [anon_sym_SLASH_EQ] = ACTIONS(5083), + [anon_sym_PERCENT_EQ] = ACTIONS(5083), + [anon_sym_PLUS_EQ] = ACTIONS(5083), + [anon_sym_DASH_EQ] = ACTIONS(5083), + [anon_sym_LT_LT_EQ] = ACTIONS(5083), + [anon_sym_GT_GT_EQ] = ACTIONS(5083), + [anon_sym_AMP_EQ] = ACTIONS(5083), + [anon_sym_CARET_EQ] = ACTIONS(5083), + [anon_sym_PIPE_EQ] = ACTIONS(5083), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_PIPE_PIPE] = ACTIONS(5089), + [anon_sym_AMP_AMP] = ACTIONS(5089), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_LT_EQ] = ACTIONS(5098), + [anon_sym_GT_EQ] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5101), + [anon_sym_GT_GT] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_DASH_GT] = ACTIONS(5107), [sym_comment] = ACTIONS(123), }, - [1304] = { + [1308] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(5096), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5102), - [anon_sym_QMARK] = ACTIONS(5105), - [anon_sym_STAR_EQ] = ACTIONS(5108), - [anon_sym_SLASH_EQ] = ACTIONS(5108), - [anon_sym_PERCENT_EQ] = ACTIONS(5108), - [anon_sym_PLUS_EQ] = ACTIONS(5108), - [anon_sym_DASH_EQ] = ACTIONS(5108), - [anon_sym_LT_LT_EQ] = ACTIONS(5108), - [anon_sym_GT_GT_EQ] = ACTIONS(5108), - [anon_sym_AMP_EQ] = ACTIONS(5108), - [anon_sym_CARET_EQ] = ACTIONS(5108), - [anon_sym_PIPE_EQ] = ACTIONS(5108), - [anon_sym_AMP] = ACTIONS(5111), - [anon_sym_PIPE_PIPE] = ACTIONS(5114), - [anon_sym_AMP_AMP] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_CARET] = ACTIONS(5111), - [anon_sym_EQ_EQ] = ACTIONS(5117), - [anon_sym_BANG_EQ] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5120), - [anon_sym_GT] = ACTIONS(5120), - [anon_sym_LT_EQ] = ACTIONS(5123), - [anon_sym_GT_EQ] = ACTIONS(5123), - [anon_sym_LT_LT] = ACTIONS(5126), - [anon_sym_GT_GT] = ACTIONS(5126), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5096), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_PLUS_PLUS] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_EQ] = ACTIONS(5119), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_STAR_EQ] = ACTIONS(5125), + [anon_sym_SLASH_EQ] = ACTIONS(5125), + [anon_sym_PERCENT_EQ] = ACTIONS(5125), + [anon_sym_PLUS_EQ] = ACTIONS(5125), + [anon_sym_DASH_EQ] = ACTIONS(5125), + [anon_sym_LT_LT_EQ] = ACTIONS(5125), + [anon_sym_GT_GT_EQ] = ACTIONS(5125), + [anon_sym_AMP_EQ] = ACTIONS(5125), + [anon_sym_CARET_EQ] = ACTIONS(5125), + [anon_sym_PIPE_EQ] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(5128), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_CARET] = ACTIONS(5128), + [anon_sym_EQ_EQ] = ACTIONS(5134), + [anon_sym_BANG_EQ] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5140), + [anon_sym_GT_EQ] = ACTIONS(5140), + [anon_sym_LT_LT] = ACTIONS(5143), + [anon_sym_GT_GT] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_DASH_DASH] = ACTIONS(5146), + [anon_sym_PLUS_PLUS] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), [sym_comment] = ACTIONS(123), }, - [1305] = { + [1309] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5144), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_STAR_EQ] = ACTIONS(5150), - [anon_sym_SLASH_EQ] = ACTIONS(5150), - [anon_sym_PERCENT_EQ] = ACTIONS(5150), - [anon_sym_PLUS_EQ] = ACTIONS(5150), - [anon_sym_DASH_EQ] = ACTIONS(5150), - [anon_sym_LT_LT_EQ] = ACTIONS(5150), - [anon_sym_GT_GT_EQ] = ACTIONS(5150), - [anon_sym_AMP_EQ] = ACTIONS(5150), - [anon_sym_CARET_EQ] = ACTIONS(5150), - [anon_sym_PIPE_EQ] = ACTIONS(5150), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_PIPE_PIPE] = ACTIONS(5156), - [anon_sym_AMP_AMP] = ACTIONS(5156), - [anon_sym_PIPE] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_EQ_EQ] = ACTIONS(5159), - [anon_sym_BANG_EQ] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_LT_EQ] = ACTIONS(5165), - [anon_sym_GT_EQ] = ACTIONS(5165), - [anon_sym_LT_LT] = ACTIONS(5168), - [anon_sym_GT_GT] = ACTIONS(5168), - [anon_sym_PLUS] = ACTIONS(5138), - [anon_sym_DASH] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5138), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_DASH_GT] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_LT_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_GT_EQ] = ACTIONS(5167), + [anon_sym_AMP_EQ] = ACTIONS(5167), + [anon_sym_CARET_EQ] = ACTIONS(5167), + [anon_sym_PIPE_EQ] = ACTIONS(5167), + [anon_sym_AMP] = ACTIONS(5170), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_CARET] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5179), + [anon_sym_GT] = ACTIONS(5179), + [anon_sym_LT_EQ] = ACTIONS(5182), + [anon_sym_GT_EQ] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5185), + [anon_sym_GT_GT] = ACTIONS(5185), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5188), + [anon_sym_PLUS_PLUS] = ACTIONS(5188), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5191), [sym_comment] = ACTIONS(123), }, - [1306] = { + [1310] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(1123), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5186), - [anon_sym_QMARK] = ACTIONS(5189), - [anon_sym_STAR_EQ] = ACTIONS(5192), - [anon_sym_SLASH_EQ] = ACTIONS(5192), - [anon_sym_PERCENT_EQ] = ACTIONS(5192), - [anon_sym_PLUS_EQ] = ACTIONS(5192), - [anon_sym_DASH_EQ] = ACTIONS(5192), - [anon_sym_LT_LT_EQ] = ACTIONS(5192), - [anon_sym_GT_GT_EQ] = ACTIONS(5192), - [anon_sym_AMP_EQ] = ACTIONS(5192), - [anon_sym_CARET_EQ] = ACTIONS(5192), - [anon_sym_PIPE_EQ] = ACTIONS(5192), - [anon_sym_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(5195), - [anon_sym_CARET] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_LT_EQ] = ACTIONS(5207), - [anon_sym_GT_EQ] = ACTIONS(5207), - [anon_sym_LT_LT] = ACTIONS(5210), - [anon_sym_GT_GT] = ACTIONS(5210), - [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(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5213), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_QMARK] = ACTIONS(5206), + [anon_sym_STAR_EQ] = ACTIONS(5209), + [anon_sym_SLASH_EQ] = ACTIONS(5209), + [anon_sym_PERCENT_EQ] = ACTIONS(5209), + [anon_sym_PLUS_EQ] = ACTIONS(5209), + [anon_sym_DASH_EQ] = ACTIONS(5209), + [anon_sym_LT_LT_EQ] = ACTIONS(5209), + [anon_sym_GT_GT_EQ] = ACTIONS(5209), + [anon_sym_AMP_EQ] = ACTIONS(5209), + [anon_sym_CARET_EQ] = ACTIONS(5209), + [anon_sym_PIPE_EQ] = ACTIONS(5209), + [anon_sym_AMP] = ACTIONS(5212), + [anon_sym_PIPE_PIPE] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), + [anon_sym_EQ_EQ] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5218), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5227), + [anon_sym_GT_GT] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5197), + [anon_sym_DASH_DASH] = ACTIONS(5230), + [anon_sym_PLUS_PLUS] = ACTIONS(5230), + [anon_sym_DOT] = ACTIONS(5233), + [anon_sym_DASH_GT] = ACTIONS(5233), [sym_comment] = ACTIONS(123), }, - [1307] = { + [1311] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(523), + [sym__statement] = STATE(527), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -61689,13 +61859,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -61711,15 +61881,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1308] = { + [1312] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1309), + [aux_sym_for_statement_repeat1] = STATE(1313), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4604), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -61757,73 +61927,73 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1309] = { + [1313] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4955), [sym_comment] = ACTIONS(123), }, - [1310] = { - [ts_builtin_sym_end] = ACTIONS(5219), - [anon_sym_POUNDinclude] = ACTIONS(5222), - [anon_sym_POUNDdefine] = ACTIONS(5222), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_POUNDif] = ACTIONS(5222), - [anon_sym_POUNDendif] = ACTIONS(5222), - [anon_sym_POUNDifdef] = ACTIONS(5222), - [anon_sym_POUNDifndef] = ACTIONS(5222), - [anon_sym_POUNDelse] = ACTIONS(5222), - [sym_preproc_directive] = ACTIONS(5225), - [anon_sym_SEMI] = ACTIONS(5219), - [anon_sym_extern] = ACTIONS(5222), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [anon_sym_STAR] = ACTIONS(5219), - [anon_sym_static] = ACTIONS(5222), - [anon_sym_typedef] = ACTIONS(5222), - [anon_sym_auto] = ACTIONS(5222), - [anon_sym_register] = ACTIONS(5222), - [anon_sym_const] = ACTIONS(5222), - [anon_sym_restrict] = ACTIONS(5222), - [anon_sym_volatile] = ACTIONS(5222), - [sym_function_specifier] = ACTIONS(5222), - [anon_sym_unsigned] = ACTIONS(5222), - [anon_sym_long] = ACTIONS(5222), - [anon_sym_short] = ACTIONS(5222), - [anon_sym_enum] = ACTIONS(5222), - [anon_sym_struct] = ACTIONS(5222), - [anon_sym_union] = ACTIONS(5222), - [anon_sym_if] = ACTIONS(5222), - [anon_sym_else] = ACTIONS(5222), - [anon_sym_switch] = ACTIONS(5222), - [anon_sym_case] = ACTIONS(5222), - [anon_sym_default] = ACTIONS(5222), - [anon_sym_while] = ACTIONS(5222), - [anon_sym_do] = ACTIONS(5222), - [anon_sym_for] = ACTIONS(5222), - [anon_sym_return] = ACTIONS(5222), - [anon_sym_break] = ACTIONS(5222), - [anon_sym_continue] = ACTIONS(5222), - [anon_sym_goto] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5219), - [anon_sym_BANG] = ACTIONS(5219), - [anon_sym_TILDE] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_DASH_DASH] = ACTIONS(5219), - [anon_sym_PLUS_PLUS] = ACTIONS(5219), - [anon_sym_sizeof] = ACTIONS(5222), - [sym_number_literal] = ACTIONS(5222), - [sym_char_literal] = ACTIONS(5222), - [sym_string_literal] = ACTIONS(5219), - [sym_identifier] = ACTIONS(5225), + [1314] = { + [ts_builtin_sym_end] = ACTIONS(5236), + [anon_sym_POUNDinclude] = ACTIONS(5239), + [anon_sym_POUNDdefine] = ACTIONS(5239), + [anon_sym_LPAREN] = ACTIONS(5236), + [anon_sym_POUNDif] = ACTIONS(5239), + [anon_sym_POUNDendif] = ACTIONS(5239), + [anon_sym_POUNDifdef] = ACTIONS(5239), + [anon_sym_POUNDifndef] = ACTIONS(5239), + [anon_sym_POUNDelse] = ACTIONS(5239), + [sym_preproc_directive] = ACTIONS(5242), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym_extern] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5236), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_static] = ACTIONS(5239), + [anon_sym_typedef] = ACTIONS(5239), + [anon_sym_auto] = ACTIONS(5239), + [anon_sym_register] = ACTIONS(5239), + [anon_sym_const] = ACTIONS(5239), + [anon_sym_restrict] = ACTIONS(5239), + [anon_sym_volatile] = ACTIONS(5239), + [sym_function_specifier] = ACTIONS(5239), + [anon_sym_unsigned] = ACTIONS(5239), + [anon_sym_long] = ACTIONS(5239), + [anon_sym_short] = ACTIONS(5239), + [anon_sym_enum] = ACTIONS(5239), + [anon_sym_struct] = ACTIONS(5239), + [anon_sym_union] = ACTIONS(5239), + [anon_sym_if] = ACTIONS(5239), + [anon_sym_else] = ACTIONS(5239), + [anon_sym_switch] = ACTIONS(5239), + [anon_sym_case] = ACTIONS(5239), + [anon_sym_default] = ACTIONS(5239), + [anon_sym_while] = ACTIONS(5239), + [anon_sym_do] = ACTIONS(5239), + [anon_sym_for] = ACTIONS(5239), + [anon_sym_return] = ACTIONS(5239), + [anon_sym_break] = ACTIONS(5239), + [anon_sym_continue] = ACTIONS(5239), + [anon_sym_goto] = ACTIONS(5239), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_BANG] = ACTIONS(5236), + [anon_sym_TILDE] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5239), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_sizeof] = ACTIONS(5239), + [sym_number_literal] = ACTIONS(5239), + [sym_char_literal] = ACTIONS(5239), + [sym_string_literal] = ACTIONS(5236), + [sym_identifier] = ACTIONS(5242), [sym_comment] = ACTIONS(123), }, - [1311] = { - [anon_sym_RPAREN] = ACTIONS(5228), + [1315] = { + [anon_sym_RPAREN] = ACTIONS(5245), [sym_comment] = ACTIONS(123), }, - [1312] = { - [sym__expression] = STATE(1302), + [1316] = { + [sym__expression] = STATE(1306), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -61840,127 +62010,127 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1313] = { - [ts_builtin_sym_end] = ACTIONS(5230), - [anon_sym_POUNDinclude] = ACTIONS(5237), - [anon_sym_POUNDdefine] = ACTIONS(5237), - [anon_sym_LPAREN] = ACTIONS(5230), - [anon_sym_POUNDif] = ACTIONS(5237), - [anon_sym_POUNDendif] = ACTIONS(5237), - [anon_sym_POUNDifdef] = ACTIONS(5237), - [anon_sym_POUNDifndef] = ACTIONS(5237), - [anon_sym_POUNDelse] = ACTIONS(5237), - [sym_preproc_directive] = ACTIONS(5244), - [anon_sym_SEMI] = ACTIONS(5230), - [anon_sym_extern] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5230), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5230), - [anon_sym_static] = ACTIONS(5237), - [anon_sym_typedef] = ACTIONS(5237), - [anon_sym_auto] = ACTIONS(5237), - [anon_sym_register] = ACTIONS(5237), - [anon_sym_const] = ACTIONS(5237), - [anon_sym_restrict] = ACTIONS(5237), - [anon_sym_volatile] = ACTIONS(5237), - [sym_function_specifier] = ACTIONS(5237), - [anon_sym_unsigned] = ACTIONS(5237), - [anon_sym_long] = ACTIONS(5237), - [anon_sym_short] = ACTIONS(5237), - [anon_sym_enum] = ACTIONS(5237), - [anon_sym_struct] = ACTIONS(5237), - [anon_sym_union] = ACTIONS(5237), - [anon_sym_if] = ACTIONS(5237), - [anon_sym_else] = ACTIONS(5251), - [anon_sym_switch] = ACTIONS(5237), - [anon_sym_case] = ACTIONS(5237), - [anon_sym_default] = ACTIONS(5237), - [anon_sym_while] = ACTIONS(5237), - [anon_sym_do] = ACTIONS(5237), - [anon_sym_for] = ACTIONS(5237), - [anon_sym_return] = ACTIONS(5237), - [anon_sym_break] = ACTIONS(5237), - [anon_sym_continue] = ACTIONS(5237), - [anon_sym_goto] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_BANG] = ACTIONS(5230), - [anon_sym_TILDE] = ACTIONS(5230), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_DASH_DASH] = ACTIONS(5230), - [anon_sym_PLUS_PLUS] = ACTIONS(5230), - [anon_sym_sizeof] = ACTIONS(5237), - [sym_number_literal] = ACTIONS(5237), - [sym_char_literal] = ACTIONS(5237), - [sym_string_literal] = ACTIONS(5230), - [sym_identifier] = ACTIONS(5244), + [1317] = { + [ts_builtin_sym_end] = ACTIONS(5247), + [anon_sym_POUNDinclude] = ACTIONS(5254), + [anon_sym_POUNDdefine] = ACTIONS(5254), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_POUNDif] = ACTIONS(5254), + [anon_sym_POUNDendif] = ACTIONS(5254), + [anon_sym_POUNDifdef] = ACTIONS(5254), + [anon_sym_POUNDifndef] = ACTIONS(5254), + [anon_sym_POUNDelse] = ACTIONS(5254), + [sym_preproc_directive] = ACTIONS(5261), + [anon_sym_SEMI] = ACTIONS(5247), + [anon_sym_extern] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5247), + [anon_sym_RBRACE] = ACTIONS(5247), + [anon_sym_STAR] = ACTIONS(5247), + [anon_sym_static] = ACTIONS(5254), + [anon_sym_typedef] = ACTIONS(5254), + [anon_sym_auto] = ACTIONS(5254), + [anon_sym_register] = ACTIONS(5254), + [anon_sym_const] = ACTIONS(5254), + [anon_sym_restrict] = ACTIONS(5254), + [anon_sym_volatile] = ACTIONS(5254), + [sym_function_specifier] = ACTIONS(5254), + [anon_sym_unsigned] = ACTIONS(5254), + [anon_sym_long] = ACTIONS(5254), + [anon_sym_short] = ACTIONS(5254), + [anon_sym_enum] = ACTIONS(5254), + [anon_sym_struct] = ACTIONS(5254), + [anon_sym_union] = ACTIONS(5254), + [anon_sym_if] = ACTIONS(5254), + [anon_sym_else] = ACTIONS(5268), + [anon_sym_switch] = ACTIONS(5254), + [anon_sym_case] = ACTIONS(5254), + [anon_sym_default] = ACTIONS(5254), + [anon_sym_while] = ACTIONS(5254), + [anon_sym_do] = ACTIONS(5254), + [anon_sym_for] = ACTIONS(5254), + [anon_sym_return] = ACTIONS(5254), + [anon_sym_break] = ACTIONS(5254), + [anon_sym_continue] = ACTIONS(5254), + [anon_sym_goto] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5247), + [anon_sym_BANG] = ACTIONS(5247), + [anon_sym_TILDE] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5247), + [anon_sym_PLUS_PLUS] = ACTIONS(5247), + [anon_sym_sizeof] = ACTIONS(5254), + [sym_number_literal] = ACTIONS(5254), + [sym_char_literal] = ACTIONS(5254), + [sym_string_literal] = ACTIONS(5247), + [sym_identifier] = ACTIONS(5261), [sym_comment] = ACTIONS(123), }, - [1314] = { + [1318] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5262), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(5276), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(4584), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(4569), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_LT_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_GT_EQ] = ACTIONS(4573), - [anon_sym_AMP_EQ] = ACTIONS(4573), - [anon_sym_CARET_EQ] = ACTIONS(4573), - [anon_sym_PIPE_EQ] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_PIPE_PIPE] = ACTIONS(4577), - [anon_sym_AMP_AMP] = ACTIONS(4577), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(4575), - [anon_sym_EQ_EQ] = ACTIONS(4579), - [anon_sym_BANG_EQ] = ACTIONS(4579), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4581), - [anon_sym_LT_EQ] = ACTIONS(4583), - [anon_sym_GT_EQ] = ACTIONS(4583), - [anon_sym_LT_LT] = ACTIONS(4585), - [anon_sym_GT_GT] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4590), + [anon_sym_SLASH_EQ] = ACTIONS(4590), + [anon_sym_PERCENT_EQ] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4590), + [anon_sym_DASH_EQ] = ACTIONS(4590), + [anon_sym_LT_LT_EQ] = ACTIONS(4590), + [anon_sym_GT_GT_EQ] = ACTIONS(4590), + [anon_sym_AMP_EQ] = ACTIONS(4590), + [anon_sym_CARET_EQ] = ACTIONS(4590), + [anon_sym_PIPE_EQ] = ACTIONS(4590), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_PIPE_PIPE] = ACTIONS(4594), + [anon_sym_AMP_AMP] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1315] = { - [sym__expression] = STATE(1316), - [sym_comma_expression] = STATE(399), + [1319] = { + [sym__expression] = STATE(1320), + [sym_comma_expression] = STATE(403), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -61978,178 +62148,178 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1316] = { + [1320] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(4584), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(4569), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_LT_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_GT_EQ] = ACTIONS(4573), - [anon_sym_AMP_EQ] = ACTIONS(4573), - [anon_sym_CARET_EQ] = ACTIONS(4573), - [anon_sym_PIPE_EQ] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_PIPE_PIPE] = ACTIONS(4577), - [anon_sym_AMP_AMP] = ACTIONS(4577), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(4575), - [anon_sym_EQ_EQ] = ACTIONS(4579), - [anon_sym_BANG_EQ] = ACTIONS(4579), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4581), - [anon_sym_LT_EQ] = ACTIONS(4583), - [anon_sym_GT_EQ] = ACTIONS(4583), - [anon_sym_LT_LT] = ACTIONS(4585), - [anon_sym_GT_GT] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4590), + [anon_sym_SLASH_EQ] = ACTIONS(4590), + [anon_sym_PERCENT_EQ] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4590), + [anon_sym_DASH_EQ] = ACTIONS(4590), + [anon_sym_LT_LT_EQ] = ACTIONS(4590), + [anon_sym_GT_GT_EQ] = ACTIONS(4590), + [anon_sym_AMP_EQ] = ACTIONS(4590), + [anon_sym_CARET_EQ] = ACTIONS(4590), + [anon_sym_PIPE_EQ] = ACTIONS(4590), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_PIPE_PIPE] = ACTIONS(4594), + [anon_sym_AMP_AMP] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1317] = { - [anon_sym_LPAREN] = ACTIONS(5267), - [anon_sym_COMMA] = ACTIONS(5267), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_COLON] = ACTIONS(851), + [1321] = { + [anon_sym_LPAREN] = ACTIONS(5284), + [anon_sym_COMMA] = ACTIONS(5284), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(5284), + [anon_sym_EQ] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(857), [sym_comment] = ACTIONS(123), }, - [1318] = { - [sym_enumerator] = STATE(440), - [anon_sym_RBRACE] = ACTIONS(5270), - [sym_identifier] = ACTIONS(1181), + [1322] = { + [sym_enumerator] = STATE(444), + [anon_sym_RBRACE] = ACTIONS(5288), + [sym_identifier] = ACTIONS(1196), [sym_comment] = ACTIONS(123), }, - [1319] = { - [anon_sym_LPAREN] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5272), - [anon_sym_SEMI] = ACTIONS(5272), - [anon_sym_STAR] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_COLON] = ACTIONS(5272), - [sym_identifier] = ACTIONS(5275), + [1323] = { + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_COMMA] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_SEMI] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5290), + [anon_sym_LBRACK] = ACTIONS(5290), + [anon_sym_COLON] = ACTIONS(5290), + [sym_identifier] = ACTIONS(5293), [sym_comment] = ACTIONS(123), }, - [1320] = { - [anon_sym_LPAREN] = ACTIONS(5278), - [anon_sym_COMMA] = ACTIONS(5278), - [anon_sym_RPAREN] = ACTIONS(5278), - [anon_sym_SEMI] = ACTIONS(5278), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_LBRACK] = ACTIONS(5278), - [anon_sym_COLON] = ACTIONS(5278), - [sym_identifier] = ACTIONS(5281), + [1324] = { + [anon_sym_LPAREN] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [sym_identifier] = ACTIONS(5299), [sym_comment] = ACTIONS(123), }, - [1321] = { - [ts_builtin_sym_end] = ACTIONS(5284), - [anon_sym_POUNDinclude] = ACTIONS(5287), - [anon_sym_POUNDdefine] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5284), - [anon_sym_POUNDif] = ACTIONS(5287), - [anon_sym_POUNDendif] = ACTIONS(5287), - [anon_sym_POUNDifdef] = ACTIONS(5287), - [anon_sym_POUNDifndef] = ACTIONS(5287), - [anon_sym_POUNDelse] = ACTIONS(5287), - [sym_preproc_directive] = ACTIONS(5290), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_extern] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(5284), - [anon_sym_RBRACE] = ACTIONS(5293), - [anon_sym_STAR] = ACTIONS(5284), - [anon_sym_static] = ACTIONS(5287), - [anon_sym_typedef] = ACTIONS(5287), - [anon_sym_auto] = ACTIONS(5287), - [anon_sym_register] = ACTIONS(5287), - [anon_sym_const] = ACTIONS(5298), - [anon_sym_restrict] = ACTIONS(5298), - [anon_sym_volatile] = ACTIONS(5298), - [sym_function_specifier] = ACTIONS(5287), - [anon_sym_unsigned] = ACTIONS(5298), - [anon_sym_long] = ACTIONS(5298), - [anon_sym_short] = ACTIONS(5298), - [anon_sym_enum] = ACTIONS(5298), - [anon_sym_struct] = ACTIONS(5298), - [anon_sym_union] = ACTIONS(5298), - [anon_sym_if] = ACTIONS(5287), - [anon_sym_switch] = ACTIONS(5287), - [anon_sym_case] = ACTIONS(5287), - [anon_sym_default] = ACTIONS(5287), - [anon_sym_while] = ACTIONS(5287), - [anon_sym_do] = ACTIONS(5287), - [anon_sym_for] = ACTIONS(5287), - [anon_sym_return] = ACTIONS(5287), - [anon_sym_break] = ACTIONS(5287), - [anon_sym_continue] = ACTIONS(5287), - [anon_sym_goto] = ACTIONS(5287), - [anon_sym_AMP] = ACTIONS(5284), - [anon_sym_BANG] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5284), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5284), - [anon_sym_PLUS_PLUS] = ACTIONS(5284), - [anon_sym_sizeof] = ACTIONS(5287), - [sym_number_literal] = ACTIONS(5287), - [sym_char_literal] = ACTIONS(5287), - [sym_string_literal] = ACTIONS(5284), - [sym_identifier] = ACTIONS(5303), + [1325] = { + [ts_builtin_sym_end] = ACTIONS(5302), + [anon_sym_POUNDinclude] = ACTIONS(5305), + [anon_sym_POUNDdefine] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5302), + [anon_sym_POUNDif] = ACTIONS(5305), + [anon_sym_POUNDendif] = ACTIONS(5305), + [anon_sym_POUNDifdef] = ACTIONS(5305), + [anon_sym_POUNDifndef] = ACTIONS(5305), + [anon_sym_POUNDelse] = ACTIONS(5305), + [sym_preproc_directive] = ACTIONS(5308), + [anon_sym_SEMI] = ACTIONS(5302), + [anon_sym_extern] = ACTIONS(5305), + [anon_sym_LBRACE] = ACTIONS(5302), + [anon_sym_RBRACE] = ACTIONS(5311), + [anon_sym_STAR] = ACTIONS(5302), + [anon_sym_static] = ACTIONS(5305), + [anon_sym_typedef] = ACTIONS(5305), + [anon_sym_auto] = ACTIONS(5305), + [anon_sym_register] = ACTIONS(5305), + [anon_sym_const] = ACTIONS(5316), + [anon_sym_restrict] = ACTIONS(5316), + [anon_sym_volatile] = ACTIONS(5316), + [sym_function_specifier] = ACTIONS(5305), + [anon_sym_unsigned] = ACTIONS(5316), + [anon_sym_long] = ACTIONS(5316), + [anon_sym_short] = ACTIONS(5316), + [anon_sym_enum] = ACTIONS(5316), + [anon_sym_struct] = ACTIONS(5316), + [anon_sym_union] = ACTIONS(5316), + [anon_sym_if] = ACTIONS(5305), + [anon_sym_switch] = ACTIONS(5305), + [anon_sym_case] = ACTIONS(5305), + [anon_sym_default] = ACTIONS(5305), + [anon_sym_while] = ACTIONS(5305), + [anon_sym_do] = ACTIONS(5305), + [anon_sym_for] = ACTIONS(5305), + [anon_sym_return] = ACTIONS(5305), + [anon_sym_break] = ACTIONS(5305), + [anon_sym_continue] = ACTIONS(5305), + [anon_sym_goto] = ACTIONS(5305), + [anon_sym_AMP] = ACTIONS(5302), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_TILDE] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_DASH_DASH] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5302), + [anon_sym_sizeof] = ACTIONS(5305), + [sym_number_literal] = ACTIONS(5305), + [sym_char_literal] = ACTIONS(5305), + [sym_string_literal] = ACTIONS(5302), + [sym_identifier] = ACTIONS(5321), [sym_comment] = ACTIONS(123), }, - [1322] = { - [sym__declarator] = STATE(1336), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1326] = { + [sym__declarator] = STATE(1340), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(3992), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(2921), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1323] = { - [sym__expression] = STATE(1337), + [1327] = { + [sym__expression] = STATE(1341), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -62183,156 +62353,156 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1324] = { - [sym_compound_statement] = STATE(1331), - [aux_sym_declaration_repeat1] = STATE(1162), - [aux_sym_struct_declaration_repeat1] = STATE(1165), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5315), + [1328] = { + [sym_compound_statement] = STATE(1335), + [aux_sym_declaration_repeat1] = STATE(1166), + [aux_sym_struct_declaration_repeat1] = STATE(1169), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(5326), + [anon_sym_RPAREN] = ACTIONS(5330), + [anon_sym_SEMI] = ACTIONS(5333), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_COLON] = ACTIONS(5335), [sym_comment] = ACTIONS(123), }, - [1325] = { - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(759), + [1329] = { + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(5330), + [anon_sym_RPAREN] = ACTIONS(5337), + [anon_sym_LBRACK] = ACTIONS(763), [sym_comment] = ACTIONS(123), }, - [1326] = { - [aux_sym_declaration_repeat1] = STATE(1162), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(5324), + [1330] = { + [aux_sym_declaration_repeat1] = STATE(1166), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(5342), [sym_comment] = ACTIONS(123), }, - [1327] = { - [ts_builtin_sym_end] = ACTIONS(5326), - [anon_sym_POUNDinclude] = ACTIONS(5329), - [anon_sym_POUNDdefine] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5326), - [anon_sym_POUNDif] = ACTIONS(5329), - [anon_sym_POUNDendif] = ACTIONS(5329), - [anon_sym_POUNDifdef] = ACTIONS(5329), - [anon_sym_POUNDifndef] = ACTIONS(5329), - [anon_sym_POUNDelse] = ACTIONS(5329), - [sym_preproc_directive] = ACTIONS(5332), - [anon_sym_SEMI] = ACTIONS(5326), - [anon_sym_extern] = ACTIONS(5329), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_RBRACE] = ACTIONS(5326), - [anon_sym_STAR] = ACTIONS(5326), - [anon_sym_static] = ACTIONS(5329), - [anon_sym_typedef] = ACTIONS(5329), - [anon_sym_auto] = ACTIONS(5329), - [anon_sym_register] = ACTIONS(5329), - [anon_sym_const] = ACTIONS(5329), - [anon_sym_restrict] = ACTIONS(5329), - [anon_sym_volatile] = ACTIONS(5329), - [sym_function_specifier] = ACTIONS(5329), - [anon_sym_unsigned] = ACTIONS(5329), - [anon_sym_long] = ACTIONS(5329), - [anon_sym_short] = ACTIONS(5329), - [anon_sym_enum] = ACTIONS(5329), - [anon_sym_struct] = ACTIONS(5329), - [anon_sym_union] = ACTIONS(5329), - [anon_sym_if] = ACTIONS(5329), - [anon_sym_switch] = ACTIONS(5329), - [anon_sym_case] = ACTIONS(5329), - [anon_sym_default] = ACTIONS(5329), - [anon_sym_while] = ACTIONS(5329), - [anon_sym_do] = ACTIONS(5329), - [anon_sym_for] = ACTIONS(5329), - [anon_sym_return] = ACTIONS(5329), - [anon_sym_break] = ACTIONS(5329), - [anon_sym_continue] = ACTIONS(5329), - [anon_sym_goto] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(5326), - [anon_sym_TILDE] = ACTIONS(5326), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_DASH_DASH] = ACTIONS(5326), - [anon_sym_PLUS_PLUS] = ACTIONS(5326), - [anon_sym_sizeof] = ACTIONS(5329), - [sym_number_literal] = ACTIONS(5329), - [sym_char_literal] = ACTIONS(5329), - [sym_string_literal] = ACTIONS(5326), - [sym_identifier] = ACTIONS(5332), + [1331] = { + [ts_builtin_sym_end] = ACTIONS(5344), + [anon_sym_POUNDinclude] = ACTIONS(5347), + [anon_sym_POUNDdefine] = ACTIONS(5347), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_POUNDif] = ACTIONS(5347), + [anon_sym_POUNDendif] = ACTIONS(5347), + [anon_sym_POUNDifdef] = ACTIONS(5347), + [anon_sym_POUNDifndef] = ACTIONS(5347), + [anon_sym_POUNDelse] = ACTIONS(5347), + [sym_preproc_directive] = ACTIONS(5350), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym_extern] = ACTIONS(5347), + [anon_sym_LBRACE] = ACTIONS(5344), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_static] = ACTIONS(5347), + [anon_sym_typedef] = ACTIONS(5347), + [anon_sym_auto] = ACTIONS(5347), + [anon_sym_register] = ACTIONS(5347), + [anon_sym_const] = ACTIONS(5347), + [anon_sym_restrict] = ACTIONS(5347), + [anon_sym_volatile] = ACTIONS(5347), + [sym_function_specifier] = ACTIONS(5347), + [anon_sym_unsigned] = ACTIONS(5347), + [anon_sym_long] = ACTIONS(5347), + [anon_sym_short] = ACTIONS(5347), + [anon_sym_enum] = ACTIONS(5347), + [anon_sym_struct] = ACTIONS(5347), + [anon_sym_union] = ACTIONS(5347), + [anon_sym_if] = ACTIONS(5347), + [anon_sym_switch] = ACTIONS(5347), + [anon_sym_case] = ACTIONS(5347), + [anon_sym_default] = ACTIONS(5347), + [anon_sym_while] = ACTIONS(5347), + [anon_sym_do] = ACTIONS(5347), + [anon_sym_for] = ACTIONS(5347), + [anon_sym_return] = ACTIONS(5347), + [anon_sym_break] = ACTIONS(5347), + [anon_sym_continue] = ACTIONS(5347), + [anon_sym_goto] = ACTIONS(5347), + [anon_sym_AMP] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_TILDE] = ACTIONS(5344), + [anon_sym_PLUS] = ACTIONS(5347), + [anon_sym_DASH] = ACTIONS(5347), + [anon_sym_DASH_DASH] = ACTIONS(5344), + [anon_sym_PLUS_PLUS] = ACTIONS(5344), + [anon_sym_sizeof] = ACTIONS(5347), + [sym_number_literal] = ACTIONS(5347), + [sym_char_literal] = ACTIONS(5347), + [sym_string_literal] = ACTIONS(5344), + [sym_identifier] = ACTIONS(5350), [sym_comment] = ACTIONS(123), }, - [1328] = { - [sym__declarator] = STATE(1335), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(479), + [1332] = { + [sym__declarator] = STATE(1339), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(483), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(5335), + [anon_sym_STAR] = ACTIONS(5353), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1329] = { - [ts_builtin_sym_end] = ACTIONS(5326), - [anon_sym_POUNDinclude] = ACTIONS(5329), - [anon_sym_POUNDdefine] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5326), - [anon_sym_POUNDif] = ACTIONS(5329), - [anon_sym_POUNDendif] = ACTIONS(5329), - [anon_sym_POUNDifdef] = ACTIONS(5329), - [anon_sym_POUNDifndef] = ACTIONS(5329), - [anon_sym_POUNDelse] = ACTIONS(5329), - [sym_preproc_directive] = ACTIONS(5332), - [anon_sym_SEMI] = ACTIONS(5326), - [anon_sym_extern] = ACTIONS(5329), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_RBRACE] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5326), - [anon_sym_static] = ACTIONS(5329), - [anon_sym_typedef] = ACTIONS(5329), - [anon_sym_auto] = ACTIONS(5329), - [anon_sym_register] = ACTIONS(5329), - [anon_sym_const] = ACTIONS(5342), - [anon_sym_restrict] = ACTIONS(5342), - [anon_sym_volatile] = ACTIONS(5342), - [sym_function_specifier] = ACTIONS(5329), - [anon_sym_unsigned] = ACTIONS(5342), - [anon_sym_long] = ACTIONS(5342), - [anon_sym_short] = ACTIONS(5342), - [anon_sym_enum] = ACTIONS(5342), - [anon_sym_struct] = ACTIONS(5342), - [anon_sym_union] = ACTIONS(5342), - [anon_sym_if] = ACTIONS(5329), - [anon_sym_switch] = ACTIONS(5329), - [anon_sym_case] = ACTIONS(5329), - [anon_sym_default] = ACTIONS(5329), - [anon_sym_while] = ACTIONS(5329), - [anon_sym_do] = ACTIONS(5329), - [anon_sym_for] = ACTIONS(5329), - [anon_sym_return] = ACTIONS(5329), - [anon_sym_break] = ACTIONS(5329), - [anon_sym_continue] = ACTIONS(5329), - [anon_sym_goto] = ACTIONS(5329), - [anon_sym_AMP] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(5326), - [anon_sym_TILDE] = ACTIONS(5326), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_DASH_DASH] = ACTIONS(5326), - [anon_sym_PLUS_PLUS] = ACTIONS(5326), - [anon_sym_sizeof] = ACTIONS(5329), - [sym_number_literal] = ACTIONS(5329), - [sym_char_literal] = ACTIONS(5329), - [sym_string_literal] = ACTIONS(5326), - [sym_identifier] = ACTIONS(5347), + [1333] = { + [ts_builtin_sym_end] = ACTIONS(5344), + [anon_sym_POUNDinclude] = ACTIONS(5347), + [anon_sym_POUNDdefine] = ACTIONS(5347), + [anon_sym_LPAREN] = ACTIONS(5344), + [anon_sym_POUNDif] = ACTIONS(5347), + [anon_sym_POUNDendif] = ACTIONS(5347), + [anon_sym_POUNDifdef] = ACTIONS(5347), + [anon_sym_POUNDifndef] = ACTIONS(5347), + [anon_sym_POUNDelse] = ACTIONS(5347), + [sym_preproc_directive] = ACTIONS(5350), + [anon_sym_SEMI] = ACTIONS(5344), + [anon_sym_extern] = ACTIONS(5347), + [anon_sym_LBRACE] = ACTIONS(5344), + [anon_sym_RBRACE] = ACTIONS(5355), + [anon_sym_STAR] = ACTIONS(5344), + [anon_sym_static] = ACTIONS(5347), + [anon_sym_typedef] = ACTIONS(5347), + [anon_sym_auto] = ACTIONS(5347), + [anon_sym_register] = ACTIONS(5347), + [anon_sym_const] = ACTIONS(5360), + [anon_sym_restrict] = ACTIONS(5360), + [anon_sym_volatile] = ACTIONS(5360), + [sym_function_specifier] = ACTIONS(5347), + [anon_sym_unsigned] = ACTIONS(5360), + [anon_sym_long] = ACTIONS(5360), + [anon_sym_short] = ACTIONS(5360), + [anon_sym_enum] = ACTIONS(5360), + [anon_sym_struct] = ACTIONS(5360), + [anon_sym_union] = ACTIONS(5360), + [anon_sym_if] = ACTIONS(5347), + [anon_sym_switch] = ACTIONS(5347), + [anon_sym_case] = ACTIONS(5347), + [anon_sym_default] = ACTIONS(5347), + [anon_sym_while] = ACTIONS(5347), + [anon_sym_do] = ACTIONS(5347), + [anon_sym_for] = ACTIONS(5347), + [anon_sym_return] = ACTIONS(5347), + [anon_sym_break] = ACTIONS(5347), + [anon_sym_continue] = ACTIONS(5347), + [anon_sym_goto] = ACTIONS(5347), + [anon_sym_AMP] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(5344), + [anon_sym_TILDE] = ACTIONS(5344), + [anon_sym_PLUS] = ACTIONS(5347), + [anon_sym_DASH] = ACTIONS(5347), + [anon_sym_DASH_DASH] = ACTIONS(5344), + [anon_sym_PLUS_PLUS] = ACTIONS(5344), + [anon_sym_sizeof] = ACTIONS(5347), + [sym_number_literal] = ACTIONS(5347), + [sym_char_literal] = ACTIONS(5347), + [sym_string_literal] = ACTIONS(5344), + [sym_identifier] = ACTIONS(5365), [sym_comment] = ACTIONS(123), }, - [1330] = { - [sym__expression] = STATE(1332), + [1334] = { + [sym__expression] = STATE(1336), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -62366,237 +62536,237 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1331] = { - [ts_builtin_sym_end] = ACTIONS(5352), - [anon_sym_POUNDinclude] = ACTIONS(5355), - [anon_sym_POUNDdefine] = ACTIONS(5355), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_POUNDif] = ACTIONS(5355), - [anon_sym_POUNDendif] = ACTIONS(5355), - [anon_sym_POUNDifdef] = ACTIONS(5355), - [anon_sym_POUNDifndef] = ACTIONS(5355), - [anon_sym_POUNDelse] = ACTIONS(5355), - [sym_preproc_directive] = ACTIONS(5358), - [anon_sym_SEMI] = ACTIONS(5352), - [anon_sym_extern] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5352), - [anon_sym_RBRACE] = ACTIONS(5352), - [anon_sym_STAR] = ACTIONS(5352), - [anon_sym_static] = ACTIONS(5355), - [anon_sym_typedef] = ACTIONS(5355), - [anon_sym_auto] = ACTIONS(5355), - [anon_sym_register] = ACTIONS(5355), - [anon_sym_const] = ACTIONS(5355), - [anon_sym_restrict] = ACTIONS(5355), - [anon_sym_volatile] = ACTIONS(5355), - [sym_function_specifier] = ACTIONS(5355), - [anon_sym_unsigned] = ACTIONS(5355), - [anon_sym_long] = ACTIONS(5355), - [anon_sym_short] = ACTIONS(5355), - [anon_sym_enum] = ACTIONS(5355), - [anon_sym_struct] = ACTIONS(5355), - [anon_sym_union] = ACTIONS(5355), - [anon_sym_if] = ACTIONS(5355), - [anon_sym_switch] = ACTIONS(5355), - [anon_sym_case] = ACTIONS(5355), - [anon_sym_default] = ACTIONS(5355), - [anon_sym_while] = ACTIONS(5355), - [anon_sym_do] = ACTIONS(5355), - [anon_sym_for] = ACTIONS(5355), - [anon_sym_return] = ACTIONS(5355), - [anon_sym_break] = ACTIONS(5355), - [anon_sym_continue] = ACTIONS(5355), - [anon_sym_goto] = ACTIONS(5355), - [anon_sym_AMP] = ACTIONS(5352), - [anon_sym_BANG] = ACTIONS(5352), - [anon_sym_TILDE] = ACTIONS(5352), - [anon_sym_PLUS] = ACTIONS(5355), - [anon_sym_DASH] = ACTIONS(5355), - [anon_sym_DASH_DASH] = ACTIONS(5352), - [anon_sym_PLUS_PLUS] = ACTIONS(5352), - [anon_sym_sizeof] = ACTIONS(5355), - [sym_number_literal] = ACTIONS(5355), - [sym_char_literal] = ACTIONS(5355), - [sym_string_literal] = ACTIONS(5352), - [sym_identifier] = ACTIONS(5358), + [1335] = { + [ts_builtin_sym_end] = ACTIONS(5370), + [anon_sym_POUNDinclude] = ACTIONS(5373), + [anon_sym_POUNDdefine] = ACTIONS(5373), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_POUNDif] = ACTIONS(5373), + [anon_sym_POUNDendif] = ACTIONS(5373), + [anon_sym_POUNDifdef] = ACTIONS(5373), + [anon_sym_POUNDifndef] = ACTIONS(5373), + [anon_sym_POUNDelse] = ACTIONS(5373), + [sym_preproc_directive] = ACTIONS(5376), + [anon_sym_SEMI] = ACTIONS(5370), + [anon_sym_extern] = ACTIONS(5373), + [anon_sym_LBRACE] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(5370), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_static] = ACTIONS(5373), + [anon_sym_typedef] = ACTIONS(5373), + [anon_sym_auto] = ACTIONS(5373), + [anon_sym_register] = ACTIONS(5373), + [anon_sym_const] = ACTIONS(5373), + [anon_sym_restrict] = ACTIONS(5373), + [anon_sym_volatile] = ACTIONS(5373), + [sym_function_specifier] = ACTIONS(5373), + [anon_sym_unsigned] = ACTIONS(5373), + [anon_sym_long] = ACTIONS(5373), + [anon_sym_short] = ACTIONS(5373), + [anon_sym_enum] = ACTIONS(5373), + [anon_sym_struct] = ACTIONS(5373), + [anon_sym_union] = ACTIONS(5373), + [anon_sym_if] = ACTIONS(5373), + [anon_sym_switch] = ACTIONS(5373), + [anon_sym_case] = ACTIONS(5373), + [anon_sym_default] = ACTIONS(5373), + [anon_sym_while] = ACTIONS(5373), + [anon_sym_do] = ACTIONS(5373), + [anon_sym_for] = ACTIONS(5373), + [anon_sym_return] = ACTIONS(5373), + [anon_sym_break] = ACTIONS(5373), + [anon_sym_continue] = ACTIONS(5373), + [anon_sym_goto] = ACTIONS(5373), + [anon_sym_AMP] = ACTIONS(5370), + [anon_sym_BANG] = ACTIONS(5370), + [anon_sym_TILDE] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(5373), + [anon_sym_DASH_DASH] = ACTIONS(5370), + [anon_sym_PLUS_PLUS] = ACTIONS(5370), + [anon_sym_sizeof] = ACTIONS(5373), + [sym_number_literal] = ACTIONS(5373), + [sym_char_literal] = ACTIONS(5373), + [sym_string_literal] = ACTIONS(5370), + [sym_identifier] = ACTIONS(5376), [sym_comment] = ACTIONS(123), }, - [1332] = { + [1336] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(5379), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1333] = { - [anon_sym_RBRACE] = ACTIONS(5363), - [anon_sym_const] = ACTIONS(5366), - [anon_sym_restrict] = ACTIONS(5366), - [anon_sym_volatile] = ACTIONS(5366), - [anon_sym_unsigned] = ACTIONS(5366), - [anon_sym_long] = ACTIONS(5366), - [anon_sym_short] = ACTIONS(5366), - [anon_sym_enum] = ACTIONS(5366), - [anon_sym_struct] = ACTIONS(5366), - [anon_sym_union] = ACTIONS(5366), - [sym_identifier] = ACTIONS(5369), + [1337] = { + [anon_sym_RBRACE] = ACTIONS(5381), + [anon_sym_const] = ACTIONS(5384), + [anon_sym_restrict] = ACTIONS(5384), + [anon_sym_volatile] = ACTIONS(5384), + [anon_sym_unsigned] = ACTIONS(5384), + [anon_sym_long] = ACTIONS(5384), + [anon_sym_short] = ACTIONS(5384), + [anon_sym_enum] = ACTIONS(5384), + [anon_sym_struct] = ACTIONS(5384), + [anon_sym_union] = ACTIONS(5384), + [sym_identifier] = ACTIONS(5387), [sym_comment] = ACTIONS(123), }, - [1334] = { - [sym__declarator] = STATE(1336), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [1338] = { + [sym__declarator] = STATE(1340), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(5335), + [anon_sym_STAR] = ACTIONS(5353), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1335] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(5372), - [anon_sym_SEMI] = ACTIONS(5372), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1145), + [1339] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(5390), + [anon_sym_SEMI] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_COLON] = ACTIONS(1160), [sym_comment] = ACTIONS(123), }, - [1336] = { - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_RPAREN] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(3299), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_COLON] = ACTIONS(857), + [1340] = { + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(863), [sym_comment] = ACTIONS(123), }, - [1337] = { + [1341] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1338] = { - [sym__declarator] = STATE(1340), - [sym__abstract_declarator] = STATE(274), - [sym_pointer_declarator] = STATE(240), + [1342] = { + [sym__declarator] = STATE(1344), + [sym__abstract_declarator] = STATE(281), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_init_declarator] = STATE(484), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(5375), + [sym_init_declarator] = STATE(488), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(5393), [anon_sym_LBRACK] = ACTIONS(726), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1339] = { - [sym__declarator] = STATE(1336), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1343] = { + [sym__declarator] = STATE(1340), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(5375), - [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(3992), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(5393), + [anon_sym_LBRACK] = ACTIONS(2921), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1340] = { - [sym_compound_statement] = STATE(487), - [aux_sym_declaration_repeat1] = STATE(485), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_SEMI] = ACTIONS(1265), + [1344] = { + [sym_compound_statement] = STATE(491), + [aux_sym_declaration_repeat1] = STATE(489), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(5395), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(1280), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [1341] = { - [sym__expression] = STATE(1344), + [1345] = { + [sym__expression] = STATE(1348), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -62615,7 +62785,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(5380), + [anon_sym_RPAREN] = ACTIONS(5398), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -62631,50 +62801,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1342] = { + [1346] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(5382), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(5400), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1343] = { + [1347] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(532), + [sym__statement] = STATE(536), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -62710,13 +62880,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -62732,15 +62902,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1344] = { + [1348] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1345), + [aux_sym_for_statement_repeat1] = STATE(1349), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4559), + [anon_sym_RPAREN] = ACTIONS(4576), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -62778,67 +62948,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1345] = { + [1349] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4604), [sym_comment] = ACTIONS(123), }, - [1346] = { - [ts_builtin_sym_end] = ACTIONS(5384), - [anon_sym_POUNDinclude] = ACTIONS(5389), - [anon_sym_POUNDdefine] = ACTIONS(5389), - [anon_sym_LPAREN] = ACTIONS(5384), - [anon_sym_POUNDif] = ACTIONS(5389), - [anon_sym_POUNDendif] = ACTIONS(5389), - [anon_sym_POUNDifdef] = ACTIONS(5389), - [anon_sym_POUNDifndef] = ACTIONS(5389), - [anon_sym_POUNDelse] = ACTIONS(5389), - [sym_preproc_directive] = ACTIONS(5394), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym_extern] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_STAR] = ACTIONS(5384), - [anon_sym_static] = ACTIONS(5389), - [anon_sym_typedef] = ACTIONS(5389), - [anon_sym_auto] = ACTIONS(5389), - [anon_sym_register] = ACTIONS(5389), - [anon_sym_const] = ACTIONS(5389), - [anon_sym_restrict] = ACTIONS(5389), - [anon_sym_volatile] = ACTIONS(5389), - [sym_function_specifier] = ACTIONS(5389), - [anon_sym_unsigned] = ACTIONS(5389), - [anon_sym_long] = ACTIONS(5389), - [anon_sym_short] = ACTIONS(5389), - [anon_sym_enum] = ACTIONS(5389), - [anon_sym_struct] = ACTIONS(5389), - [anon_sym_union] = ACTIONS(5389), - [anon_sym_if] = ACTIONS(5389), - [anon_sym_switch] = ACTIONS(5389), - [anon_sym_case] = ACTIONS(5389), - [anon_sym_default] = ACTIONS(5389), - [anon_sym_while] = ACTIONS(5389), - [anon_sym_do] = ACTIONS(5389), - [anon_sym_for] = ACTIONS(5389), - [anon_sym_return] = ACTIONS(5389), - [anon_sym_break] = ACTIONS(5389), - [anon_sym_continue] = ACTIONS(5389), - [anon_sym_goto] = ACTIONS(5389), - [anon_sym_AMP] = ACTIONS(5384), - [anon_sym_BANG] = ACTIONS(5384), - [anon_sym_TILDE] = ACTIONS(5384), - [anon_sym_PLUS] = ACTIONS(5389), - [anon_sym_DASH] = ACTIONS(5389), - [anon_sym_DASH_DASH] = ACTIONS(5384), - [anon_sym_PLUS_PLUS] = ACTIONS(5384), - [anon_sym_sizeof] = ACTIONS(5389), - [sym_number_literal] = ACTIONS(5389), - [sym_char_literal] = ACTIONS(5389), - [sym_string_literal] = ACTIONS(5384), - [sym_identifier] = ACTIONS(5394), + [1350] = { + [ts_builtin_sym_end] = ACTIONS(5402), + [anon_sym_POUNDinclude] = ACTIONS(5407), + [anon_sym_POUNDdefine] = ACTIONS(5407), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_POUNDif] = ACTIONS(5407), + [anon_sym_POUNDendif] = ACTIONS(5407), + [anon_sym_POUNDifdef] = ACTIONS(5407), + [anon_sym_POUNDifndef] = ACTIONS(5407), + [anon_sym_POUNDelse] = ACTIONS(5407), + [sym_preproc_directive] = ACTIONS(5412), + [anon_sym_SEMI] = ACTIONS(5402), + [anon_sym_extern] = ACTIONS(5407), + [anon_sym_LBRACE] = ACTIONS(5402), + [anon_sym_RBRACE] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_static] = ACTIONS(5407), + [anon_sym_typedef] = ACTIONS(5407), + [anon_sym_auto] = ACTIONS(5407), + [anon_sym_register] = ACTIONS(5407), + [anon_sym_const] = ACTIONS(5407), + [anon_sym_restrict] = ACTIONS(5407), + [anon_sym_volatile] = ACTIONS(5407), + [sym_function_specifier] = ACTIONS(5407), + [anon_sym_unsigned] = ACTIONS(5407), + [anon_sym_long] = ACTIONS(5407), + [anon_sym_short] = ACTIONS(5407), + [anon_sym_enum] = ACTIONS(5407), + [anon_sym_struct] = ACTIONS(5407), + [anon_sym_union] = ACTIONS(5407), + [anon_sym_if] = ACTIONS(5407), + [anon_sym_switch] = ACTIONS(5407), + [anon_sym_case] = ACTIONS(5407), + [anon_sym_default] = ACTIONS(5407), + [anon_sym_while] = ACTIONS(5407), + [anon_sym_do] = ACTIONS(5407), + [anon_sym_for] = ACTIONS(5407), + [anon_sym_return] = ACTIONS(5407), + [anon_sym_break] = ACTIONS(5407), + [anon_sym_continue] = ACTIONS(5407), + [anon_sym_goto] = ACTIONS(5407), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_BANG] = ACTIONS(5402), + [anon_sym_TILDE] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5407), + [anon_sym_DASH] = ACTIONS(5407), + [anon_sym_DASH_DASH] = ACTIONS(5402), + [anon_sym_PLUS_PLUS] = ACTIONS(5402), + [anon_sym_sizeof] = ACTIONS(5407), + [sym_number_literal] = ACTIONS(5407), + [sym_char_literal] = ACTIONS(5407), + [sym_string_literal] = ACTIONS(5402), + [sym_identifier] = ACTIONS(5412), [sym_comment] = ACTIONS(123), }, - [1347] = { + [1351] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -62863,14 +63033,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1361), + [sym_type_name] = STATE(1365), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), [aux_sym_sized_type_specifier_repeat1] = STATE(205), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2142), + [anon_sym_RPAREN] = ACTIONS(2144), [anon_sym_STAR] = ACTIONS(207), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), @@ -62892,66 +63062,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(5399), + [sym_identifier] = ACTIONS(5417), [sym_comment] = ACTIONS(123), }, - [1348] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [anon_sym_POUNDinclude] = ACTIONS(5401), - [anon_sym_POUNDdefine] = ACTIONS(5401), - [anon_sym_LPAREN] = ACTIONS(5404), - [anon_sym_POUNDif] = ACTIONS(5401), - [anon_sym_POUNDendif] = ACTIONS(5401), - [anon_sym_POUNDifdef] = ACTIONS(5401), - [anon_sym_POUNDifndef] = ACTIONS(5401), - [anon_sym_POUNDelse] = ACTIONS(5401), - [sym_preproc_directive] = ACTIONS(5407), - [anon_sym_SEMI] = ACTIONS(5404), - [anon_sym_extern] = ACTIONS(5401), - [anon_sym_LBRACE] = ACTIONS(5404), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(5404), - [anon_sym_static] = ACTIONS(5401), - [anon_sym_typedef] = ACTIONS(5401), - [anon_sym_auto] = ACTIONS(5401), - [anon_sym_register] = ACTIONS(5401), - [anon_sym_const] = ACTIONS(5401), - [anon_sym_restrict] = ACTIONS(5401), - [anon_sym_volatile] = ACTIONS(5401), - [sym_function_specifier] = ACTIONS(5401), - [anon_sym_unsigned] = ACTIONS(5401), - [anon_sym_long] = ACTIONS(5401), - [anon_sym_short] = ACTIONS(5401), - [anon_sym_enum] = ACTIONS(5401), - [anon_sym_struct] = ACTIONS(5401), - [anon_sym_union] = ACTIONS(5401), - [anon_sym_if] = ACTIONS(5401), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(5401), - [anon_sym_case] = ACTIONS(5401), - [anon_sym_default] = ACTIONS(5401), - [anon_sym_while] = ACTIONS(5401), - [anon_sym_do] = ACTIONS(5401), - [anon_sym_for] = ACTIONS(5401), - [anon_sym_return] = ACTIONS(5401), - [anon_sym_break] = ACTIONS(5401), - [anon_sym_continue] = ACTIONS(5401), - [anon_sym_goto] = ACTIONS(5401), - [anon_sym_AMP] = ACTIONS(5404), - [anon_sym_BANG] = ACTIONS(5404), - [anon_sym_TILDE] = ACTIONS(5404), - [anon_sym_PLUS] = ACTIONS(5401), - [anon_sym_DASH] = ACTIONS(5401), - [anon_sym_DASH_DASH] = ACTIONS(5404), - [anon_sym_PLUS_PLUS] = ACTIONS(5404), - [anon_sym_sizeof] = ACTIONS(5401), - [sym_number_literal] = ACTIONS(5401), - [sym_char_literal] = ACTIONS(5401), - [sym_string_literal] = ACTIONS(5404), - [sym_identifier] = ACTIONS(5407), + [1352] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [anon_sym_POUNDinclude] = ACTIONS(5419), + [anon_sym_POUNDdefine] = ACTIONS(5419), + [anon_sym_LPAREN] = ACTIONS(5422), + [anon_sym_POUNDif] = ACTIONS(5419), + [anon_sym_POUNDendif] = ACTIONS(5419), + [anon_sym_POUNDifdef] = ACTIONS(5419), + [anon_sym_POUNDifndef] = ACTIONS(5419), + [anon_sym_POUNDelse] = ACTIONS(5419), + [sym_preproc_directive] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5422), + [anon_sym_extern] = ACTIONS(5419), + [anon_sym_LBRACE] = ACTIONS(5422), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(5422), + [anon_sym_static] = ACTIONS(5419), + [anon_sym_typedef] = ACTIONS(5419), + [anon_sym_auto] = ACTIONS(5419), + [anon_sym_register] = ACTIONS(5419), + [anon_sym_const] = ACTIONS(5419), + [anon_sym_restrict] = ACTIONS(5419), + [anon_sym_volatile] = ACTIONS(5419), + [sym_function_specifier] = ACTIONS(5419), + [anon_sym_unsigned] = ACTIONS(5419), + [anon_sym_long] = ACTIONS(5419), + [anon_sym_short] = ACTIONS(5419), + [anon_sym_enum] = ACTIONS(5419), + [anon_sym_struct] = ACTIONS(5419), + [anon_sym_union] = ACTIONS(5419), + [anon_sym_if] = ACTIONS(5419), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(5419), + [anon_sym_case] = ACTIONS(5419), + [anon_sym_default] = ACTIONS(5419), + [anon_sym_while] = ACTIONS(5419), + [anon_sym_do] = ACTIONS(5419), + [anon_sym_for] = ACTIONS(5419), + [anon_sym_return] = ACTIONS(5419), + [anon_sym_break] = ACTIONS(5419), + [anon_sym_continue] = ACTIONS(5419), + [anon_sym_goto] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_TILDE] = ACTIONS(5422), + [anon_sym_PLUS] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_DASH_DASH] = ACTIONS(5422), + [anon_sym_PLUS_PLUS] = ACTIONS(5422), + [anon_sym_sizeof] = ACTIONS(5419), + [sym_number_literal] = ACTIONS(5419), + [sym_char_literal] = ACTIONS(5419), + [sym_string_literal] = ACTIONS(5422), + [sym_identifier] = ACTIONS(5425), [sym_comment] = ACTIONS(123), }, - [1349] = { + [1353] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -62966,15 +63136,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_linkage_specification] = STATE(39), [sym_compound_statement] = STATE(42), [sym_storage_class_specifier] = STATE(14), - [sym_type_qualifier] = STATE(1352), - [sym__type_specifier] = STATE(1353), + [sym_type_qualifier] = STATE(1356), + [sym__type_specifier] = STATE(1357), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), - [sym__enum_specifier_contents] = STATE(435), + [sym__enum_specifier_contents] = STATE(439), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(283), - [sym_enumerator] = STATE(436), + [sym_struct_declaration] = STATE(287), + [sym_enumerator] = STATE(440), [sym__statement] = STATE(39), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), @@ -63009,11 +63179,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(672), + [aux_sym_translation_unit_repeat1] = STATE(676), [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym_struct_specifier_repeat1] = STATE(1354), + [aux_sym_struct_specifier_repeat1] = STATE(1358), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(131), @@ -63024,7 +63194,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(5428), [anon_sym_STAR] = ACTIONS(145), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -63062,75 +63232,75 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(5412), + [sym_identifier] = ACTIONS(5430), [sym_comment] = ACTIONS(123), }, - [1350] = { - [anon_sym_POUNDinclude] = ACTIONS(1605), - [anon_sym_POUNDdefine] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(5414), - [anon_sym_COMMA] = ACTIONS(5418), - [anon_sym_RPAREN] = ACTIONS(5418), - [anon_sym_POUNDif] = ACTIONS(1605), - [anon_sym_POUNDendif] = ACTIONS(1605), - [anon_sym_POUNDifdef] = ACTIONS(1605), - [anon_sym_POUNDifndef] = ACTIONS(1605), - [anon_sym_POUNDelse] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(5414), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(5414), - [anon_sym_LBRACK] = ACTIONS(5418), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_auto] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [sym_function_specifier] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_COLON] = ACTIONS(5418), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [sym_string_literal] = ACTIONS(1603), - [sym_identifier] = ACTIONS(5421), + [1354] = { + [anon_sym_POUNDinclude] = ACTIONS(1620), + [anon_sym_POUNDdefine] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(5432), + [anon_sym_COMMA] = ACTIONS(5436), + [anon_sym_RPAREN] = ACTIONS(5436), + [anon_sym_POUNDif] = ACTIONS(1620), + [anon_sym_POUNDendif] = ACTIONS(1620), + [anon_sym_POUNDifdef] = ACTIONS(1620), + [anon_sym_POUNDifndef] = ACTIONS(1620), + [anon_sym_POUNDelse] = ACTIONS(1620), + [sym_preproc_directive] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(5432), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5436), + [anon_sym_static] = ACTIONS(1620), + [anon_sym_typedef] = ACTIONS(1620), + [anon_sym_auto] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1620), + [anon_sym_restrict] = ACTIONS(1620), + [anon_sym_volatile] = ACTIONS(1620), + [sym_function_specifier] = ACTIONS(1620), + [anon_sym_unsigned] = ACTIONS(1620), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_short] = ACTIONS(1620), + [anon_sym_enum] = ACTIONS(1620), + [anon_sym_struct] = ACTIONS(1620), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_COLON] = ACTIONS(5436), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_switch] = ACTIONS(1620), + [anon_sym_case] = ACTIONS(1620), + [anon_sym_default] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_do] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_return] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_goto] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_sizeof] = ACTIONS(1620), + [sym_number_literal] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [sym_string_literal] = ACTIONS(1618), + [sym_identifier] = ACTIONS(5439), [sym_comment] = ACTIONS(123), }, - [1351] = { + [1355] = { [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_COMMA] = ACTIONS(5425), + [anon_sym_COMMA] = ACTIONS(5443), [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1204), [anon_sym_STAR] = ACTIONS(380), [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(5428), - [anon_sym_COLON] = ACTIONS(5431), + [anon_sym_EQ] = ACTIONS(5446), + [anon_sym_COLON] = ACTIONS(5449), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -63166,50 +63336,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1352] = { + [1356] = { [anon_sym_extern] = ACTIONS(281), [anon_sym_static] = ACTIONS(281), [anon_sym_typedef] = ACTIONS(281), [anon_sym_auto] = ACTIONS(281), [anon_sym_register] = ACTIONS(281), - [anon_sym_const] = ACTIONS(5434), - [anon_sym_restrict] = ACTIONS(5434), - [anon_sym_volatile] = ACTIONS(5434), + [anon_sym_const] = ACTIONS(5452), + [anon_sym_restrict] = ACTIONS(5452), + [anon_sym_volatile] = ACTIONS(5452), [sym_function_specifier] = ACTIONS(281), - [anon_sym_unsigned] = ACTIONS(5434), - [anon_sym_long] = ACTIONS(5434), - [anon_sym_short] = ACTIONS(5434), - [anon_sym_enum] = ACTIONS(5434), - [anon_sym_struct] = ACTIONS(5434), - [anon_sym_union] = ACTIONS(5434), - [sym_identifier] = ACTIONS(5437), + [anon_sym_unsigned] = ACTIONS(5452), + [anon_sym_long] = ACTIONS(5452), + [anon_sym_short] = ACTIONS(5452), + [anon_sym_enum] = ACTIONS(5452), + [anon_sym_struct] = ACTIONS(5452), + [anon_sym_union] = ACTIONS(5452), + [sym_identifier] = ACTIONS(5455), [sym_comment] = ACTIONS(123), }, - [1353] = { - [sym__declarator] = STATE(1358), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym_init_declarator] = STATE(466), + [1357] = { + [sym__declarator] = STATE(1362), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym_init_declarator] = STATE(470), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(5440), - [anon_sym_STAR] = ACTIONS(5442), - [anon_sym_COLON] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(5458), + [anon_sym_STAR] = ACTIONS(5460), + [anon_sym_COLON] = ACTIONS(910), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1354] = { + [1358] = { [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(282), + [sym__type_specifier] = STATE(286), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym_struct_declaration] = STATE(287), + [sym_struct_declaration] = STATE(291), [sym_macro_type_specifier] = STATE(44), - [aux_sym_array_declarator_repeat1] = STATE(284), + [aux_sym_array_declarator_repeat1] = STATE(288), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_RBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(5462), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -63222,149 +63392,149 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [1355] = { - [anon_sym_LPAREN] = ACTIONS(5446), - [anon_sym_COMMA] = ACTIONS(5446), - [anon_sym_RPAREN] = ACTIONS(5446), - [anon_sym_SEMI] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5446), - [anon_sym_LBRACK] = ACTIONS(5446), - [anon_sym_COLON] = ACTIONS(5446), - [sym_identifier] = ACTIONS(5449), + [1359] = { + [anon_sym_LPAREN] = ACTIONS(5464), + [anon_sym_COMMA] = ACTIONS(5464), + [anon_sym_RPAREN] = ACTIONS(5464), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5464), + [anon_sym_COLON] = ACTIONS(5464), + [sym_identifier] = ACTIONS(5467), [sym_comment] = ACTIONS(123), }, - [1356] = { - [anon_sym_POUNDinclude] = ACTIONS(1245), - [anon_sym_POUNDdefine] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_POUNDif] = ACTIONS(1245), - [anon_sym_POUNDifdef] = ACTIONS(1245), - [anon_sym_POUNDifndef] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(5452), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(5455), - [anon_sym_restrict] = ACTIONS(5455), - [anon_sym_volatile] = ACTIONS(5455), - [sym_function_specifier] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(5455), - [anon_sym_long] = ACTIONS(5455), - [anon_sym_short] = ACTIONS(5455), - [anon_sym_enum] = ACTIONS(5455), - [anon_sym_struct] = ACTIONS(5455), - [anon_sym_union] = ACTIONS(5455), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1245), - [sym_char_literal] = ACTIONS(1245), - [sym_string_literal] = ACTIONS(1243), - [sym_identifier] = ACTIONS(5458), + [1360] = { + [anon_sym_POUNDinclude] = ACTIONS(1260), + [anon_sym_POUNDdefine] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_POUNDif] = ACTIONS(1260), + [anon_sym_POUNDifdef] = ACTIONS(1260), + [anon_sym_POUNDifndef] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(5473), + [anon_sym_restrict] = ACTIONS(5473), + [anon_sym_volatile] = ACTIONS(5473), + [sym_function_specifier] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(5473), + [anon_sym_long] = ACTIONS(5473), + [anon_sym_short] = ACTIONS(5473), + [anon_sym_enum] = ACTIONS(5473), + [anon_sym_struct] = ACTIONS(5473), + [anon_sym_union] = ACTIONS(5473), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1260), + [sym_char_literal] = ACTIONS(1260), + [sym_string_literal] = ACTIONS(1258), + [sym_identifier] = ACTIONS(5476), [sym_comment] = ACTIONS(123), }, - [1357] = { - [sym__declarator] = STATE(1336), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [1361] = { + [sym__declarator] = STATE(1340), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_STAR] = ACTIONS(5460), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1358] = { - [sym_compound_statement] = STATE(480), - [aux_sym_declaration_repeat1] = STATE(469), - [aux_sym_struct_declaration_repeat1] = STATE(419), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(5461), - [anon_sym_SEMI] = ACTIONS(5463), + [1362] = { + [sym_compound_statement] = STATE(484), + [aux_sym_declaration_repeat1] = STATE(473), + [aux_sym_struct_declaration_repeat1] = STATE(423), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(5479), + [anon_sym_SEMI] = ACTIONS(5481), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_COLON] = ACTIONS(932), [sym_comment] = ACTIONS(123), }, - [1359] = { - [anon_sym_POUNDinclude] = ACTIONS(1259), - [anon_sym_POUNDdefine] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_POUNDif] = ACTIONS(1259), - [anon_sym_POUNDifdef] = ACTIONS(1259), - [anon_sym_POUNDifndef] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(5465), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(5468), - [anon_sym_restrict] = ACTIONS(5468), - [anon_sym_volatile] = ACTIONS(5468), - [sym_function_specifier] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(5468), - [anon_sym_long] = ACTIONS(5468), - [anon_sym_short] = ACTIONS(5468), - [anon_sym_enum] = ACTIONS(5468), - [anon_sym_struct] = ACTIONS(5468), - [anon_sym_union] = ACTIONS(5468), - [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(1257), - [sym_identifier] = ACTIONS(5471), + [1363] = { + [anon_sym_POUNDinclude] = ACTIONS(1274), + [anon_sym_POUNDdefine] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_POUNDif] = ACTIONS(1274), + [anon_sym_POUNDifdef] = ACTIONS(1274), + [anon_sym_POUNDifndef] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [sym_function_specifier] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(5486), + [anon_sym_long] = ACTIONS(5486), + [anon_sym_short] = ACTIONS(5486), + [anon_sym_enum] = ACTIONS(5486), + [anon_sym_struct] = ACTIONS(5486), + [anon_sym_union] = ACTIONS(5486), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_sizeof] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [sym_string_literal] = ACTIONS(1272), + [sym_identifier] = ACTIONS(5489), [sym_comment] = ACTIONS(123), }, - [1360] = { - [aux_sym_preproc_params_repeat1] = STATE(1033), + [1364] = { + [aux_sym_preproc_params_repeat1] = STATE(1037), [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_COMMA] = ACTIONS(5474), - [anon_sym_RPAREN] = ACTIONS(5477), + [anon_sym_COMMA] = ACTIONS(5492), + [anon_sym_RPAREN] = ACTIONS(5495), [anon_sym_STAR] = ACTIONS(380), [anon_sym_LBRACK] = ACTIONS(377), [anon_sym_EQ] = ACTIONS(383), @@ -63402,12 +63572,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1361] = { - [anon_sym_RPAREN] = ACTIONS(5481), + [1365] = { + [anon_sym_RPAREN] = ACTIONS(5499), [sym_comment] = ACTIONS(123), }, - [1362] = { - [sym__expression] = STATE(339), + [1366] = { + [sym__expression] = STATE(343), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -63424,16 +63594,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(5486), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_COLON] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(5501), + [anon_sym_COMMA] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(886), + [anon_sym_COLON] = ACTIONS(886), [anon_sym_AMP] = ACTIONS(145), [anon_sym_BANG] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(185), @@ -63445,10 +63615,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(5489), + [sym_identifier] = ACTIONS(5507), [sym_comment] = ACTIONS(123), }, - [1363] = { + [1367] = { [anon_sym_LF] = ACTIONS(536), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(536), @@ -63456,9 +63626,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(536), [anon_sym_RBRACE] = ACTIONS(536), [anon_sym_STAR] = ACTIONS(538), - [anon_sym_LBRACK] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5510), [anon_sym_RBRACK] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(5495), + [anon_sym_EQ] = ACTIONS(5513), [anon_sym_COLON] = ACTIONS(536), [anon_sym_QMARK] = ACTIONS(536), [anon_sym_STAR_EQ] = ACTIONS(536), @@ -63490,19 +63660,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(538), [anon_sym_DASH_DASH] = ACTIONS(536), [anon_sym_PLUS_PLUS] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(5510), [anon_sym_DASH_GT] = ACTIONS(536), [sym_comment] = ACTIONS(123), }, - [1364] = { + [1368] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1002), - [sym_comma_expression] = STATE(1003), + [sym__expression] = STATE(1006), + [sym_comma_expression] = STATE(1007), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -63519,7 +63689,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1366), + [sym_type_name] = STATE(1370), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -63549,513 +63719,513 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1365] = { - [sym_argument_list] = STATE(968), + [1369] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_LPAREN] = ACTIONS(5516), [anon_sym_COMMA] = ACTIONS(710), [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_SEMI] = ACTIONS(710), [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(5501), - [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_STAR] = ACTIONS(5519), + [anon_sym_LBRACK] = ACTIONS(5522), [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_EQ] = ACTIONS(5507), + [anon_sym_EQ] = ACTIONS(5525), [anon_sym_COLON] = ACTIONS(710), - [anon_sym_QMARK] = ACTIONS(5510), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5513), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_AMP] = ACTIONS(5516), - [anon_sym_PIPE_PIPE] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_PIPE] = ACTIONS(5516), - [anon_sym_CARET] = ACTIONS(5516), - [anon_sym_EQ_EQ] = ACTIONS(5522), - [anon_sym_BANG_EQ] = ACTIONS(5522), - [anon_sym_LT] = ACTIONS(5525), - [anon_sym_GT] = ACTIONS(5525), - [anon_sym_LT_EQ] = ACTIONS(5528), - [anon_sym_GT_EQ] = ACTIONS(5528), - [anon_sym_LT_LT] = ACTIONS(5531), - [anon_sym_GT_GT] = ACTIONS(5531), - [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(5534), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), + [anon_sym_QMARK] = ACTIONS(5528), + [anon_sym_STAR_EQ] = ACTIONS(5531), + [anon_sym_SLASH_EQ] = ACTIONS(5531), + [anon_sym_PERCENT_EQ] = ACTIONS(5531), + [anon_sym_PLUS_EQ] = ACTIONS(5531), + [anon_sym_DASH_EQ] = ACTIONS(5531), + [anon_sym_LT_LT_EQ] = ACTIONS(5531), + [anon_sym_GT_GT_EQ] = ACTIONS(5531), + [anon_sym_AMP_EQ] = ACTIONS(5531), + [anon_sym_CARET_EQ] = ACTIONS(5531), + [anon_sym_PIPE_EQ] = ACTIONS(5531), + [anon_sym_AMP] = ACTIONS(5534), + [anon_sym_PIPE_PIPE] = ACTIONS(5537), + [anon_sym_AMP_AMP] = ACTIONS(5537), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_CARET] = ACTIONS(5534), + [anon_sym_EQ_EQ] = ACTIONS(5540), + [anon_sym_BANG_EQ] = ACTIONS(5540), + [anon_sym_LT] = ACTIONS(5543), + [anon_sym_GT] = ACTIONS(5543), + [anon_sym_LT_EQ] = ACTIONS(5546), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_LT_LT] = ACTIONS(5549), + [anon_sym_GT_GT] = ACTIONS(5549), + [anon_sym_PLUS] = ACTIONS(5519), + [anon_sym_DASH] = ACTIONS(5519), + [anon_sym_SLASH] = ACTIONS(5519), + [anon_sym_PERCENT] = ACTIONS(5519), + [anon_sym_DASH_DASH] = ACTIONS(5552), + [anon_sym_PLUS_PLUS] = ACTIONS(5552), + [anon_sym_DOT] = ACTIONS(5555), + [anon_sym_DASH_GT] = ACTIONS(5555), [sym_comment] = ACTIONS(123), }, - [1366] = { - [anon_sym_RPAREN] = ACTIONS(5540), + [1370] = { + [anon_sym_RPAREN] = ACTIONS(5558), [sym_comment] = ACTIONS(123), }, - [1367] = { - [sym__expression] = STATE(1245), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1008), - [sym_concatenated_string] = STATE(947), - [anon_sym_LF] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(5542), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(4077), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(4077), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(4083), - [anon_sym_PLUS_PLUS] = ACTIONS(4083), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [1371] = { + [sym__expression] = STATE(1249), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_initializer_list] = STATE(1012), + [sym_concatenated_string] = STATE(951), + [anon_sym_LF] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(5560), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_COLON] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_sizeof] = ACTIONS(2934), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1368] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(5548), - [anon_sym_COMMA] = ACTIONS(5545), - [anon_sym_RPAREN] = ACTIONS(5545), - [anon_sym_SEMI] = ACTIONS(5545), - [anon_sym_RBRACE] = ACTIONS(5545), - [anon_sym_STAR] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5556), - [anon_sym_RBRACK] = ACTIONS(5545), - [anon_sym_EQ] = ACTIONS(5560), - [anon_sym_COLON] = ACTIONS(5545), - [anon_sym_QMARK] = ACTIONS(5564), - [anon_sym_STAR_EQ] = ACTIONS(5568), - [anon_sym_SLASH_EQ] = ACTIONS(5568), - [anon_sym_PERCENT_EQ] = ACTIONS(5568), - [anon_sym_PLUS_EQ] = ACTIONS(5568), - [anon_sym_DASH_EQ] = ACTIONS(5568), - [anon_sym_LT_LT_EQ] = ACTIONS(5568), - [anon_sym_GT_GT_EQ] = ACTIONS(5568), - [anon_sym_AMP_EQ] = ACTIONS(5568), - [anon_sym_CARET_EQ] = ACTIONS(5568), - [anon_sym_PIPE_EQ] = ACTIONS(5568), - [anon_sym_AMP] = ACTIONS(5572), - [anon_sym_PIPE_PIPE] = ACTIONS(5576), - [anon_sym_AMP_AMP] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5572), - [anon_sym_EQ_EQ] = ACTIONS(5580), - [anon_sym_BANG_EQ] = ACTIONS(5580), - [anon_sym_LT] = ACTIONS(5584), - [anon_sym_GT] = ACTIONS(5584), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_LT] = ACTIONS(5592), - [anon_sym_GT_GT] = ACTIONS(5592), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_SLASH] = ACTIONS(5552), - [anon_sym_PERCENT] = ACTIONS(5552), - [anon_sym_DASH_DASH] = ACTIONS(5596), - [anon_sym_PLUS_PLUS] = ACTIONS(5596), - [anon_sym_DOT] = ACTIONS(5600), - [anon_sym_DASH_GT] = ACTIONS(5600), + [1372] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(5563), + [anon_sym_LPAREN] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(5563), + [anon_sym_RPAREN] = ACTIONS(5563), + [anon_sym_SEMI] = ACTIONS(5563), + [anon_sym_RBRACE] = ACTIONS(5563), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5574), + [anon_sym_RBRACK] = ACTIONS(5563), + [anon_sym_EQ] = ACTIONS(5578), + [anon_sym_COLON] = ACTIONS(5563), + [anon_sym_QMARK] = ACTIONS(5582), + [anon_sym_STAR_EQ] = ACTIONS(5586), + [anon_sym_SLASH_EQ] = ACTIONS(5586), + [anon_sym_PERCENT_EQ] = ACTIONS(5586), + [anon_sym_PLUS_EQ] = ACTIONS(5586), + [anon_sym_DASH_EQ] = ACTIONS(5586), + [anon_sym_LT_LT_EQ] = ACTIONS(5586), + [anon_sym_GT_GT_EQ] = ACTIONS(5586), + [anon_sym_AMP_EQ] = ACTIONS(5586), + [anon_sym_CARET_EQ] = ACTIONS(5586), + [anon_sym_PIPE_EQ] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(5590), + [anon_sym_PIPE_PIPE] = ACTIONS(5594), + [anon_sym_AMP_AMP] = ACTIONS(5594), + [anon_sym_PIPE] = ACTIONS(5590), + [anon_sym_CARET] = ACTIONS(5590), + [anon_sym_EQ_EQ] = ACTIONS(5598), + [anon_sym_BANG_EQ] = ACTIONS(5598), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_LT_EQ] = ACTIONS(5606), + [anon_sym_GT_EQ] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5610), + [anon_sym_GT_GT] = ACTIONS(5610), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_SLASH] = ACTIONS(5570), + [anon_sym_PERCENT] = ACTIONS(5570), + [anon_sym_DASH_DASH] = ACTIONS(5614), + [anon_sym_PLUS_PLUS] = ACTIONS(5614), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_DASH_GT] = ACTIONS(5618), [sym_comment] = ACTIONS(123), }, - [1369] = { - [sym_argument_list] = STATE(968), + [1373] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(5622), [anon_sym_COMMA] = ACTIONS(544), [anon_sym_RPAREN] = ACTIONS(544), [anon_sym_SEMI] = ACTIONS(544), [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5610), + [anon_sym_STAR] = ACTIONS(5625), + [anon_sym_LBRACK] = ACTIONS(5628), [anon_sym_RBRACK] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(5613), + [anon_sym_EQ] = ACTIONS(5631), [anon_sym_COLON] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(5616), - [anon_sym_STAR_EQ] = ACTIONS(5619), - [anon_sym_SLASH_EQ] = ACTIONS(5619), - [anon_sym_PERCENT_EQ] = ACTIONS(5619), - [anon_sym_PLUS_EQ] = ACTIONS(5619), - [anon_sym_DASH_EQ] = ACTIONS(5619), - [anon_sym_LT_LT_EQ] = ACTIONS(5619), - [anon_sym_GT_GT_EQ] = ACTIONS(5619), - [anon_sym_AMP_EQ] = ACTIONS(5619), - [anon_sym_CARET_EQ] = ACTIONS(5619), - [anon_sym_PIPE_EQ] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5622), - [anon_sym_PIPE_PIPE] = ACTIONS(5625), - [anon_sym_AMP_AMP] = ACTIONS(5625), - [anon_sym_PIPE] = ACTIONS(5622), - [anon_sym_CARET] = ACTIONS(5622), - [anon_sym_EQ_EQ] = ACTIONS(5628), - [anon_sym_BANG_EQ] = ACTIONS(5628), - [anon_sym_LT] = ACTIONS(5631), - [anon_sym_GT] = ACTIONS(5631), - [anon_sym_LT_EQ] = ACTIONS(5634), - [anon_sym_GT_EQ] = ACTIONS(5634), - [anon_sym_LT_LT] = ACTIONS(5637), - [anon_sym_GT_GT] = ACTIONS(5637), - [anon_sym_PLUS] = ACTIONS(5607), - [anon_sym_DASH] = ACTIONS(5607), - [anon_sym_SLASH] = ACTIONS(5607), - [anon_sym_PERCENT] = ACTIONS(5607), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5634), + [anon_sym_STAR_EQ] = ACTIONS(5637), + [anon_sym_SLASH_EQ] = ACTIONS(5637), + [anon_sym_PERCENT_EQ] = ACTIONS(5637), + [anon_sym_PLUS_EQ] = ACTIONS(5637), + [anon_sym_DASH_EQ] = ACTIONS(5637), + [anon_sym_LT_LT_EQ] = ACTIONS(5637), + [anon_sym_GT_GT_EQ] = ACTIONS(5637), + [anon_sym_AMP_EQ] = ACTIONS(5637), + [anon_sym_CARET_EQ] = ACTIONS(5637), + [anon_sym_PIPE_EQ] = ACTIONS(5637), + [anon_sym_AMP] = ACTIONS(5640), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5640), + [anon_sym_CARET] = ACTIONS(5640), + [anon_sym_EQ_EQ] = ACTIONS(5646), + [anon_sym_BANG_EQ] = ACTIONS(5646), + [anon_sym_LT] = ACTIONS(5649), + [anon_sym_GT] = ACTIONS(5649), + [anon_sym_LT_EQ] = ACTIONS(5652), + [anon_sym_GT_EQ] = ACTIONS(5652), + [anon_sym_LT_LT] = ACTIONS(5655), + [anon_sym_GT_GT] = ACTIONS(5655), + [anon_sym_PLUS] = ACTIONS(5625), + [anon_sym_DASH] = ACTIONS(5625), + [anon_sym_SLASH] = ACTIONS(5625), + [anon_sym_PERCENT] = ACTIONS(5625), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DASH_GT] = ACTIONS(5661), [sym_comment] = ACTIONS(123), }, - [1370] = { - [sym_argument_list] = STATE(968), + [1374] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(5646), + [anon_sym_LPAREN] = ACTIONS(5664), [anon_sym_COMMA] = ACTIONS(548), [anon_sym_RPAREN] = ACTIONS(548), [anon_sym_SEMI] = ACTIONS(548), [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(5649), - [anon_sym_LBRACK] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5667), + [anon_sym_LBRACK] = ACTIONS(5670), [anon_sym_RBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(5655), + [anon_sym_EQ] = ACTIONS(5673), [anon_sym_COLON] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_STAR_EQ] = ACTIONS(5661), - [anon_sym_SLASH_EQ] = ACTIONS(5661), - [anon_sym_PERCENT_EQ] = ACTIONS(5661), - [anon_sym_PLUS_EQ] = ACTIONS(5661), - [anon_sym_DASH_EQ] = ACTIONS(5661), - [anon_sym_LT_LT_EQ] = ACTIONS(5661), - [anon_sym_GT_GT_EQ] = ACTIONS(5661), - [anon_sym_AMP_EQ] = ACTIONS(5661), - [anon_sym_CARET_EQ] = ACTIONS(5661), - [anon_sym_PIPE_EQ] = ACTIONS(5661), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_PIPE_PIPE] = ACTIONS(5667), - [anon_sym_AMP_AMP] = ACTIONS(5667), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_CARET] = ACTIONS(5664), - [anon_sym_EQ_EQ] = ACTIONS(5670), - [anon_sym_BANG_EQ] = ACTIONS(5670), - [anon_sym_LT] = ACTIONS(5673), - [anon_sym_GT] = ACTIONS(5673), - [anon_sym_LT_EQ] = ACTIONS(5676), - [anon_sym_GT_EQ] = ACTIONS(5676), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_PLUS] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5649), - [anon_sym_SLASH] = ACTIONS(5649), - [anon_sym_PERCENT] = ACTIONS(5649), - [anon_sym_DASH_DASH] = ACTIONS(5682), - [anon_sym_PLUS_PLUS] = ACTIONS(5682), - [anon_sym_DOT] = ACTIONS(5685), - [anon_sym_DASH_GT] = ACTIONS(5685), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5679), + [anon_sym_SLASH_EQ] = ACTIONS(5679), + [anon_sym_PERCENT_EQ] = ACTIONS(5679), + [anon_sym_PLUS_EQ] = ACTIONS(5679), + [anon_sym_DASH_EQ] = ACTIONS(5679), + [anon_sym_LT_LT_EQ] = ACTIONS(5679), + [anon_sym_GT_GT_EQ] = ACTIONS(5679), + [anon_sym_AMP_EQ] = ACTIONS(5679), + [anon_sym_CARET_EQ] = ACTIONS(5679), + [anon_sym_PIPE_EQ] = ACTIONS(5679), + [anon_sym_AMP] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5685), + [anon_sym_AMP_AMP] = ACTIONS(5685), + [anon_sym_PIPE] = ACTIONS(5682), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_LT] = ACTIONS(5691), + [anon_sym_GT] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5694), + [anon_sym_GT_EQ] = ACTIONS(5694), + [anon_sym_LT_LT] = ACTIONS(5697), + [anon_sym_GT_GT] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5667), + [anon_sym_DASH] = ACTIONS(5667), + [anon_sym_SLASH] = ACTIONS(5667), + [anon_sym_PERCENT] = ACTIONS(5667), + [anon_sym_DASH_DASH] = ACTIONS(5700), + [anon_sym_PLUS_PLUS] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5703), + [anon_sym_DASH_GT] = ACTIONS(5703), [sym_comment] = ACTIONS(123), }, - [1371] = { - [sym_argument_list] = STATE(968), + [1375] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(5688), + [anon_sym_LPAREN] = ACTIONS(5706), [anon_sym_COMMA] = ACTIONS(552), [anon_sym_RPAREN] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(552), [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(5691), - [anon_sym_LBRACK] = ACTIONS(5694), + [anon_sym_STAR] = ACTIONS(5709), + [anon_sym_LBRACK] = ACTIONS(5712), [anon_sym_RBRACK] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_EQ] = ACTIONS(5715), [anon_sym_COLON] = ACTIONS(552), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_STAR_EQ] = ACTIONS(5703), - [anon_sym_SLASH_EQ] = ACTIONS(5703), - [anon_sym_PERCENT_EQ] = ACTIONS(5703), - [anon_sym_PLUS_EQ] = ACTIONS(5703), - [anon_sym_DASH_EQ] = ACTIONS(5703), - [anon_sym_LT_LT_EQ] = ACTIONS(5703), - [anon_sym_GT_GT_EQ] = ACTIONS(5703), - [anon_sym_AMP_EQ] = ACTIONS(5703), - [anon_sym_CARET_EQ] = ACTIONS(5703), - [anon_sym_PIPE_EQ] = ACTIONS(5703), - [anon_sym_AMP] = ACTIONS(5706), - [anon_sym_PIPE_PIPE] = ACTIONS(5709), - [anon_sym_AMP_AMP] = ACTIONS(5709), - [anon_sym_PIPE] = ACTIONS(5706), - [anon_sym_CARET] = ACTIONS(5706), - [anon_sym_EQ_EQ] = ACTIONS(5712), - [anon_sym_BANG_EQ] = ACTIONS(5712), - [anon_sym_LT] = ACTIONS(5715), - [anon_sym_GT] = ACTIONS(5715), - [anon_sym_LT_EQ] = ACTIONS(5718), - [anon_sym_GT_EQ] = ACTIONS(5718), - [anon_sym_LT_LT] = ACTIONS(5721), - [anon_sym_GT_GT] = ACTIONS(5721), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5691), - [anon_sym_PERCENT] = ACTIONS(5691), - [anon_sym_DASH_DASH] = ACTIONS(5724), - [anon_sym_PLUS_PLUS] = ACTIONS(5724), - [anon_sym_DOT] = ACTIONS(5727), - [anon_sym_DASH_GT] = ACTIONS(5727), + [anon_sym_QMARK] = ACTIONS(5718), + [anon_sym_STAR_EQ] = ACTIONS(5721), + [anon_sym_SLASH_EQ] = ACTIONS(5721), + [anon_sym_PERCENT_EQ] = ACTIONS(5721), + [anon_sym_PLUS_EQ] = ACTIONS(5721), + [anon_sym_DASH_EQ] = ACTIONS(5721), + [anon_sym_LT_LT_EQ] = ACTIONS(5721), + [anon_sym_GT_GT_EQ] = ACTIONS(5721), + [anon_sym_AMP_EQ] = ACTIONS(5721), + [anon_sym_CARET_EQ] = ACTIONS(5721), + [anon_sym_PIPE_EQ] = ACTIONS(5721), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_PIPE_PIPE] = ACTIONS(5727), + [anon_sym_AMP_AMP] = ACTIONS(5727), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5730), + [anon_sym_BANG_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5733), + [anon_sym_GT] = ACTIONS(5733), + [anon_sym_LT_EQ] = ACTIONS(5736), + [anon_sym_GT_EQ] = ACTIONS(5736), + [anon_sym_LT_LT] = ACTIONS(5739), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_PLUS] = ACTIONS(5709), + [anon_sym_DASH] = ACTIONS(5709), + [anon_sym_SLASH] = ACTIONS(5709), + [anon_sym_PERCENT] = ACTIONS(5709), + [anon_sym_DASH_DASH] = ACTIONS(5742), + [anon_sym_PLUS_PLUS] = ACTIONS(5742), + [anon_sym_DOT] = ACTIONS(5745), + [anon_sym_DASH_GT] = ACTIONS(5745), [sym_comment] = ACTIONS(123), }, - [1372] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(5736), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_EQ] = ACTIONS(5739), - [anon_sym_COLON] = ACTIONS(1115), - [anon_sym_QMARK] = ACTIONS(5742), - [anon_sym_STAR_EQ] = ACTIONS(5745), - [anon_sym_SLASH_EQ] = ACTIONS(5745), - [anon_sym_PERCENT_EQ] = ACTIONS(5745), - [anon_sym_PLUS_EQ] = ACTIONS(5745), - [anon_sym_DASH_EQ] = ACTIONS(5745), - [anon_sym_LT_LT_EQ] = ACTIONS(5745), - [anon_sym_GT_GT_EQ] = ACTIONS(5745), - [anon_sym_AMP_EQ] = ACTIONS(5745), - [anon_sym_CARET_EQ] = ACTIONS(5745), - [anon_sym_PIPE_EQ] = ACTIONS(5745), - [anon_sym_AMP] = ACTIONS(5748), - [anon_sym_PIPE_PIPE] = ACTIONS(5751), - [anon_sym_AMP_AMP] = ACTIONS(5751), - [anon_sym_PIPE] = ACTIONS(5748), - [anon_sym_CARET] = ACTIONS(5748), - [anon_sym_EQ_EQ] = ACTIONS(5754), - [anon_sym_BANG_EQ] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5757), - [anon_sym_LT_EQ] = ACTIONS(5760), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_LT] = ACTIONS(5763), - [anon_sym_GT_GT] = ACTIONS(5763), - [anon_sym_PLUS] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(5733), - [anon_sym_SLASH] = ACTIONS(5733), - [anon_sym_PERCENT] = ACTIONS(5733), - [anon_sym_DASH_DASH] = ACTIONS(5766), - [anon_sym_PLUS_PLUS] = ACTIONS(5766), - [anon_sym_DOT] = ACTIONS(5769), - [anon_sym_DASH_GT] = ACTIONS(5769), + [1376] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_LBRACK] = ACTIONS(5754), + [anon_sym_RBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(5757), + [anon_sym_COLON] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_STAR_EQ] = ACTIONS(5763), + [anon_sym_SLASH_EQ] = ACTIONS(5763), + [anon_sym_PERCENT_EQ] = ACTIONS(5763), + [anon_sym_PLUS_EQ] = ACTIONS(5763), + [anon_sym_DASH_EQ] = ACTIONS(5763), + [anon_sym_LT_LT_EQ] = ACTIONS(5763), + [anon_sym_GT_GT_EQ] = ACTIONS(5763), + [anon_sym_AMP_EQ] = ACTIONS(5763), + [anon_sym_CARET_EQ] = ACTIONS(5763), + [anon_sym_PIPE_EQ] = ACTIONS(5763), + [anon_sym_AMP] = ACTIONS(5766), + [anon_sym_PIPE_PIPE] = ACTIONS(5769), + [anon_sym_AMP_AMP] = ACTIONS(5769), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5766), + [anon_sym_EQ_EQ] = ACTIONS(5772), + [anon_sym_BANG_EQ] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5775), + [anon_sym_GT] = ACTIONS(5775), + [anon_sym_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_LT] = ACTIONS(5781), + [anon_sym_GT_GT] = ACTIONS(5781), + [anon_sym_PLUS] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5751), + [anon_sym_SLASH] = ACTIONS(5751), + [anon_sym_PERCENT] = ACTIONS(5751), + [anon_sym_DASH_DASH] = ACTIONS(5784), + [anon_sym_PLUS_PLUS] = ACTIONS(5784), + [anon_sym_DOT] = ACTIONS(5787), + [anon_sym_DASH_GT] = ACTIONS(5787), [sym_comment] = ACTIONS(123), }, - [1373] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(5772), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(5775), - [anon_sym_LBRACK] = ACTIONS(5778), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(5781), - [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(5784), - [anon_sym_STAR_EQ] = ACTIONS(5787), - [anon_sym_SLASH_EQ] = ACTIONS(5787), - [anon_sym_PERCENT_EQ] = ACTIONS(5787), - [anon_sym_PLUS_EQ] = ACTIONS(5787), - [anon_sym_DASH_EQ] = ACTIONS(5787), - [anon_sym_LT_LT_EQ] = ACTIONS(5787), - [anon_sym_GT_GT_EQ] = ACTIONS(5787), - [anon_sym_AMP_EQ] = ACTIONS(5787), - [anon_sym_CARET_EQ] = ACTIONS(5787), - [anon_sym_PIPE_EQ] = ACTIONS(5787), - [anon_sym_AMP] = ACTIONS(5790), - [anon_sym_PIPE_PIPE] = ACTIONS(5793), - [anon_sym_AMP_AMP] = ACTIONS(5793), - [anon_sym_PIPE] = ACTIONS(5790), - [anon_sym_CARET] = ACTIONS(5790), - [anon_sym_EQ_EQ] = ACTIONS(5796), - [anon_sym_BANG_EQ] = ACTIONS(5796), - [anon_sym_LT] = ACTIONS(5799), - [anon_sym_GT] = ACTIONS(5799), - [anon_sym_LT_EQ] = ACTIONS(5802), - [anon_sym_GT_EQ] = ACTIONS(5802), - [anon_sym_LT_LT] = ACTIONS(5805), - [anon_sym_GT_GT] = ACTIONS(5805), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5775), - [anon_sym_DASH_DASH] = ACTIONS(5808), - [anon_sym_PLUS_PLUS] = ACTIONS(5808), - [anon_sym_DOT] = ACTIONS(5811), - [anon_sym_DASH_GT] = ACTIONS(5811), + [1377] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(5793), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_RBRACK] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(5799), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_QMARK] = ACTIONS(5802), + [anon_sym_STAR_EQ] = ACTIONS(5805), + [anon_sym_SLASH_EQ] = ACTIONS(5805), + [anon_sym_PERCENT_EQ] = ACTIONS(5805), + [anon_sym_PLUS_EQ] = ACTIONS(5805), + [anon_sym_DASH_EQ] = ACTIONS(5805), + [anon_sym_LT_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_GT_EQ] = ACTIONS(5805), + [anon_sym_AMP_EQ] = ACTIONS(5805), + [anon_sym_CARET_EQ] = ACTIONS(5805), + [anon_sym_PIPE_EQ] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5808), + [anon_sym_PIPE_PIPE] = ACTIONS(5811), + [anon_sym_AMP_AMP] = ACTIONS(5811), + [anon_sym_PIPE] = ACTIONS(5808), + [anon_sym_CARET] = ACTIONS(5808), + [anon_sym_EQ_EQ] = ACTIONS(5814), + [anon_sym_BANG_EQ] = ACTIONS(5814), + [anon_sym_LT] = ACTIONS(5817), + [anon_sym_GT] = ACTIONS(5817), + [anon_sym_LT_EQ] = ACTIONS(5820), + [anon_sym_GT_EQ] = ACTIONS(5820), + [anon_sym_LT_LT] = ACTIONS(5823), + [anon_sym_GT_GT] = ACTIONS(5823), + [anon_sym_PLUS] = ACTIONS(5793), + [anon_sym_DASH] = ACTIONS(5793), + [anon_sym_SLASH] = ACTIONS(5793), + [anon_sym_PERCENT] = ACTIONS(5793), + [anon_sym_DASH_DASH] = ACTIONS(5826), + [anon_sym_PLUS_PLUS] = ACTIONS(5826), + [anon_sym_DOT] = ACTIONS(5829), + [anon_sym_DASH_GT] = ACTIONS(5829), [sym_comment] = ACTIONS(123), }, - [1374] = { - [sym_argument_list] = STATE(968), + [1378] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(5814), + [anon_sym_LPAREN] = ACTIONS(5832), [anon_sym_COMMA] = ACTIONS(560), [anon_sym_RPAREN] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(560), [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(5817), - [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_STAR] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5838), [anon_sym_RBRACK] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(5841), [anon_sym_COLON] = ACTIONS(560), - [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(5817), - [anon_sym_DASH] = ACTIONS(5817), - [anon_sym_SLASH] = ACTIONS(5817), - [anon_sym_PERCENT] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(5850), - [anon_sym_PLUS_PLUS] = ACTIONS(5850), - [anon_sym_DOT] = ACTIONS(5853), - [anon_sym_DASH_GT] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5844), + [anon_sym_STAR_EQ] = ACTIONS(5847), + [anon_sym_SLASH_EQ] = ACTIONS(5847), + [anon_sym_PERCENT_EQ] = ACTIONS(5847), + [anon_sym_PLUS_EQ] = ACTIONS(5847), + [anon_sym_DASH_EQ] = ACTIONS(5847), + [anon_sym_LT_LT_EQ] = ACTIONS(5847), + [anon_sym_GT_GT_EQ] = ACTIONS(5847), + [anon_sym_AMP_EQ] = ACTIONS(5847), + [anon_sym_CARET_EQ] = ACTIONS(5847), + [anon_sym_PIPE_EQ] = ACTIONS(5847), + [anon_sym_AMP] = ACTIONS(5850), + [anon_sym_PIPE_PIPE] = ACTIONS(5853), + [anon_sym_AMP_AMP] = ACTIONS(5853), + [anon_sym_PIPE] = ACTIONS(5850), + [anon_sym_CARET] = ACTIONS(5850), + [anon_sym_EQ_EQ] = ACTIONS(5856), + [anon_sym_BANG_EQ] = ACTIONS(5856), + [anon_sym_LT] = ACTIONS(5859), + [anon_sym_GT] = ACTIONS(5859), + [anon_sym_LT_EQ] = ACTIONS(5862), + [anon_sym_GT_EQ] = ACTIONS(5862), + [anon_sym_LT_LT] = ACTIONS(5865), + [anon_sym_GT_GT] = ACTIONS(5865), + [anon_sym_PLUS] = ACTIONS(5835), + [anon_sym_DASH] = ACTIONS(5835), + [anon_sym_SLASH] = ACTIONS(5835), + [anon_sym_PERCENT] = ACTIONS(5835), + [anon_sym_DASH_DASH] = ACTIONS(5868), + [anon_sym_PLUS_PLUS] = ACTIONS(5868), + [anon_sym_DOT] = ACTIONS(5871), + [anon_sym_DASH_GT] = ACTIONS(5871), [sym_comment] = ACTIONS(123), }, - [1375] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(5856), - [anon_sym_LPAREN] = ACTIONS(5859), - [anon_sym_COMMA] = ACTIONS(5856), - [anon_sym_RPAREN] = ACTIONS(5856), - [anon_sym_SEMI] = ACTIONS(5856), - [anon_sym_RBRACE] = ACTIONS(5856), - [anon_sym_STAR] = ACTIONS(5863), - [anon_sym_LBRACK] = ACTIONS(5867), - [anon_sym_RBRACK] = ACTIONS(5856), - [anon_sym_EQ] = ACTIONS(5871), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym_QMARK] = ACTIONS(5875), - [anon_sym_STAR_EQ] = ACTIONS(5879), - [anon_sym_SLASH_EQ] = ACTIONS(5879), - [anon_sym_PERCENT_EQ] = ACTIONS(5879), - [anon_sym_PLUS_EQ] = ACTIONS(5879), - [anon_sym_DASH_EQ] = ACTIONS(5879), - [anon_sym_LT_LT_EQ] = ACTIONS(5879), - [anon_sym_GT_GT_EQ] = ACTIONS(5879), - [anon_sym_AMP_EQ] = ACTIONS(5879), - [anon_sym_CARET_EQ] = ACTIONS(5879), - [anon_sym_PIPE_EQ] = ACTIONS(5879), - [anon_sym_AMP] = ACTIONS(5883), - [anon_sym_PIPE_PIPE] = ACTIONS(5887), - [anon_sym_AMP_AMP] = ACTIONS(5887), - [anon_sym_PIPE] = ACTIONS(5883), - [anon_sym_CARET] = ACTIONS(5883), - [anon_sym_EQ_EQ] = ACTIONS(5891), - [anon_sym_BANG_EQ] = ACTIONS(5891), - [anon_sym_LT] = ACTIONS(5895), - [anon_sym_GT] = ACTIONS(5895), - [anon_sym_LT_EQ] = ACTIONS(5899), - [anon_sym_GT_EQ] = ACTIONS(5899), - [anon_sym_LT_LT] = ACTIONS(5903), - [anon_sym_GT_GT] = ACTIONS(5903), - [anon_sym_PLUS] = ACTIONS(5863), - [anon_sym_DASH] = ACTIONS(5863), - [anon_sym_SLASH] = ACTIONS(5863), - [anon_sym_PERCENT] = ACTIONS(5863), - [anon_sym_DASH_DASH] = ACTIONS(5907), - [anon_sym_PLUS_PLUS] = ACTIONS(5907), - [anon_sym_DOT] = ACTIONS(5911), - [anon_sym_DASH_GT] = ACTIONS(5911), + [1379] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(5874), + [anon_sym_LPAREN] = ACTIONS(5877), + [anon_sym_COMMA] = ACTIONS(5874), + [anon_sym_RPAREN] = ACTIONS(5874), + [anon_sym_SEMI] = ACTIONS(5874), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5881), + [anon_sym_LBRACK] = ACTIONS(5885), + [anon_sym_RBRACK] = ACTIONS(5874), + [anon_sym_EQ] = ACTIONS(5889), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(5893), + [anon_sym_STAR_EQ] = ACTIONS(5897), + [anon_sym_SLASH_EQ] = ACTIONS(5897), + [anon_sym_PERCENT_EQ] = ACTIONS(5897), + [anon_sym_PLUS_EQ] = ACTIONS(5897), + [anon_sym_DASH_EQ] = ACTIONS(5897), + [anon_sym_LT_LT_EQ] = ACTIONS(5897), + [anon_sym_GT_GT_EQ] = ACTIONS(5897), + [anon_sym_AMP_EQ] = ACTIONS(5897), + [anon_sym_CARET_EQ] = ACTIONS(5897), + [anon_sym_PIPE_EQ] = ACTIONS(5897), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_PIPE_PIPE] = ACTIONS(5905), + [anon_sym_AMP_AMP] = ACTIONS(5905), + [anon_sym_PIPE] = ACTIONS(5901), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_EQ_EQ] = ACTIONS(5909), + [anon_sym_BANG_EQ] = ACTIONS(5909), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5917), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_LT] = ACTIONS(5921), + [anon_sym_GT_GT] = ACTIONS(5921), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_PERCENT] = ACTIONS(5881), + [anon_sym_DASH_DASH] = ACTIONS(5925), + [anon_sym_PLUS_PLUS] = ACTIONS(5925), + [anon_sym_DOT] = ACTIONS(5929), + [anon_sym_DASH_GT] = ACTIONS(5929), [sym_comment] = ACTIONS(123), }, - [1376] = { + [1380] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5933), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -64090,99 +64260,99 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1377] = { - [sym__expression] = STATE(1378), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [1381] = { + [sym__expression] = STATE(1382), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), [sym_identifier] = ACTIONS(239), [sym_comment] = ACTIONS(123), }, - [1378] = { - [sym_argument_list] = STATE(968), + [1382] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4528), [anon_sym_COMMA] = ACTIONS(600), [anon_sym_RPAREN] = ACTIONS(600), [anon_sym_SEMI] = ACTIONS(600), [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4540), [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4543), [anon_sym_COLON] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_LT_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_GT_EQ] = ACTIONS(4532), - [anon_sym_AMP_EQ] = ACTIONS(4532), - [anon_sym_CARET_EQ] = ACTIONS(4532), - [anon_sym_PIPE_EQ] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4535), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym_EQ_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4544), - [anon_sym_GT] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4547), - [anon_sym_GT_EQ] = ACTIONS(4547), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_PLUS_PLUS] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_AMP_AMP] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4561), + [anon_sym_GT] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4564), + [anon_sym_GT_EQ] = ACTIONS(4564), + [anon_sym_LT_LT] = ACTIONS(4567), + [anon_sym_GT_GT] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_DASH_GT] = ACTIONS(4573), [sym_comment] = ACTIONS(123), }, - [1379] = { - [sym_declaration] = STATE(1380), - [sym__declaration_specifiers] = STATE(505), + [1383] = { + [sym_declaration] = STATE(1384), + [sym__declaration_specifiers] = STATE(509), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), - [sym__type_specifier] = STATE(506), + [sym__type_specifier] = STATE(510), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1381), + [sym__expression] = STATE(1385), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -64204,7 +64374,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2286), [anon_sym_extern] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(345), [anon_sym_static] = ACTIONS(147), @@ -64232,11 +64402,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(123), }, - [1380] = { - [sym__expression] = STATE(1342), + [1384] = { + [sym__expression] = STATE(1346), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -64255,7 +64425,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym_SEMI] = ACTIONS(5935), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -64271,49 +64441,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1381] = { + [1385] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(5919), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1382] = { - [sym__expression] = STATE(1383), + [1386] = { + [sym__expression] = STATE(1387), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -64332,7 +64502,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(5382), + [anon_sym_SEMI] = ACTIONS(5400), [anon_sym_STAR] = ACTIONS(345), [anon_sym_AMP] = ACTIONS(345), [anon_sym_BANG] = ACTIONS(347), @@ -64348,49 +64518,49 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1383] = { + [1387] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(970), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [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(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1384] = { - [sym__expression] = STATE(1385), + [1388] = { + [sym__expression] = STATE(1389), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -64408,66 +64578,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1385] = { + [1389] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(5921), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1386] = { + [1390] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(606), + [sym__statement] = STATE(610), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -64499,64 +64669,64 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(1469), - [anon_sym_POUNDinclude] = ACTIONS(1471), - [anon_sym_POUNDdefine] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(5923), - [anon_sym_POUNDif] = ACTIONS(1471), - [anon_sym_POUNDendif] = ACTIONS(1471), - [anon_sym_POUNDifdef] = ACTIONS(1471), - [anon_sym_POUNDifndef] = ACTIONS(1471), - [anon_sym_POUNDelse] = ACTIONS(1471), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(5926), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(5929), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_typedef] = 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(2426), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_goto] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(5929), - [anon_sym_BANG] = ACTIONS(5932), - [anon_sym_TILDE] = ACTIONS(4376), - [anon_sym_PLUS] = ACTIONS(5935), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_DASH_DASH] = ACTIONS(5938), - [anon_sym_PLUS_PLUS] = ACTIONS(5938), - [anon_sym_sizeof] = ACTIONS(4389), - [sym_number_literal] = ACTIONS(4392), - [sym_char_literal] = ACTIONS(4392), - [sym_string_literal] = ACTIONS(4395), - [sym_identifier] = ACTIONS(4398), + [ts_builtin_sym_end] = ACTIONS(1484), + [anon_sym_POUNDinclude] = ACTIONS(1486), + [anon_sym_POUNDdefine] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(5941), + [anon_sym_POUNDif] = ACTIONS(1486), + [anon_sym_POUNDendif] = ACTIONS(1486), + [anon_sym_POUNDifdef] = ACTIONS(1486), + [anon_sym_POUNDifndef] = ACTIONS(1486), + [anon_sym_POUNDelse] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(5944), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [sym_function_specifier] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(5947), + [anon_sym_BANG] = ACTIONS(5950), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_DASH_DASH] = ACTIONS(5956), + [anon_sym_PLUS_PLUS] = ACTIONS(5956), + [anon_sym_sizeof] = ACTIONS(4406), + [sym_number_literal] = ACTIONS(4409), + [sym_char_literal] = ACTIONS(4409), + [sym_string_literal] = ACTIONS(4412), + [sym_identifier] = ACTIONS(4415), [sym_comment] = ACTIONS(123), }, - [1387] = { + [1391] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(608), + [sym__statement] = STATE(612), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -64592,13 +64762,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -64614,16 +64784,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1388] = { + [1392] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5959), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -64658,9 +64828,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1389] = { + [1393] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(611), + [sym__statement] = STATE(615), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -64696,13 +64866,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -64718,11 +64888,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1390] = { - [sym__expression] = STATE(1391), + [1394] = { + [sym__expression] = STATE(1395), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -64740,66 +64910,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1391] = { + [1395] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(5943), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1392] = { + [1396] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(615), + [sym__statement] = STATE(619), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -64835,13 +65005,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -64857,11 +65027,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1393] = { - [sym__expression] = STATE(1394), + [1397] = { + [sym__expression] = STATE(1398), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -64879,66 +65049,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1394] = { + [1398] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(5945), - [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_STAR] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1441), - [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PERCENT_EQ] = ACTIONS(1462), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_LT_LT_EQ] = ACTIONS(1462), + [anon_sym_GT_GT_EQ] = ACTIONS(1462), + [anon_sym_AMP_EQ] = ACTIONS(1462), + [anon_sym_CARET_EQ] = ACTIONS(1462), + [anon_sym_PIPE_EQ] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1395] = { + [1399] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1396), + [sym__statement] = STATE(1400), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -64974,13 +65144,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -64996,169 +65166,169 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1396] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [anon_sym_POUNDinclude] = ACTIONS(1685), - [anon_sym_POUNDdefine] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_POUNDif] = ACTIONS(1685), - [anon_sym_POUNDendif] = ACTIONS(1685), - [anon_sym_POUNDifdef] = ACTIONS(1685), - [anon_sym_POUNDifndef] = ACTIONS(1685), - [anon_sym_POUNDelse] = ACTIONS(1685), - [sym_preproc_directive] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [sym_function_specifier] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(5947), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [sym_string_literal] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1687), + [1400] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [anon_sym_POUNDinclude] = ACTIONS(1700), + [anon_sym_POUNDdefine] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_POUNDif] = ACTIONS(1700), + [anon_sym_POUNDendif] = ACTIONS(1700), + [anon_sym_POUNDifdef] = ACTIONS(1700), + [anon_sym_POUNDifndef] = ACTIONS(1700), + [anon_sym_POUNDelse] = ACTIONS(1700), + [sym_preproc_directive] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [sym_function_specifier] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(5965), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [sym_string_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1702), [sym_comment] = ACTIONS(123), }, - [1397] = { - [ts_builtin_sym_end] = ACTIONS(5950), - [anon_sym_POUNDinclude] = ACTIONS(5954), - [anon_sym_POUNDdefine] = ACTIONS(5954), - [anon_sym_LPAREN] = ACTIONS(5950), - [anon_sym_POUNDif] = ACTIONS(5954), - [anon_sym_POUNDendif] = ACTIONS(5954), - [anon_sym_POUNDifdef] = ACTIONS(5954), - [anon_sym_POUNDifndef] = ACTIONS(5954), - [anon_sym_POUNDelse] = ACTIONS(5954), - [sym_preproc_directive] = ACTIONS(5958), - [anon_sym_SEMI] = ACTIONS(5950), - [anon_sym_extern] = ACTIONS(5954), - [anon_sym_LBRACE] = ACTIONS(5950), - [anon_sym_RBRACE] = ACTIONS(5950), - [anon_sym_STAR] = ACTIONS(5950), - [anon_sym_static] = ACTIONS(5954), - [anon_sym_typedef] = ACTIONS(5954), - [anon_sym_auto] = ACTIONS(5954), - [anon_sym_register] = ACTIONS(5954), - [anon_sym_const] = ACTIONS(5954), - [anon_sym_restrict] = ACTIONS(5954), - [anon_sym_volatile] = ACTIONS(5954), - [sym_function_specifier] = ACTIONS(5954), - [anon_sym_unsigned] = ACTIONS(5954), - [anon_sym_long] = ACTIONS(5954), - [anon_sym_short] = ACTIONS(5954), - [anon_sym_enum] = ACTIONS(5954), - [anon_sym_struct] = ACTIONS(5954), - [anon_sym_union] = ACTIONS(5954), - [anon_sym_if] = ACTIONS(5954), - [anon_sym_else] = ACTIONS(5954), - [anon_sym_switch] = ACTIONS(5954), - [anon_sym_case] = ACTIONS(5954), - [anon_sym_default] = ACTIONS(5954), - [anon_sym_while] = ACTIONS(5954), - [anon_sym_do] = ACTIONS(5954), - [anon_sym_for] = ACTIONS(5954), - [anon_sym_return] = ACTIONS(5954), - [anon_sym_break] = ACTIONS(5954), - [anon_sym_continue] = ACTIONS(5954), - [anon_sym_goto] = ACTIONS(5954), - [anon_sym_AMP] = ACTIONS(5950), - [anon_sym_BANG] = ACTIONS(5950), - [anon_sym_TILDE] = ACTIONS(5950), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_DASH_DASH] = ACTIONS(5950), - [anon_sym_PLUS_PLUS] = ACTIONS(5950), - [anon_sym_sizeof] = ACTIONS(5954), - [sym_number_literal] = ACTIONS(5954), - [sym_char_literal] = ACTIONS(5954), - [sym_string_literal] = ACTIONS(5950), - [sym_identifier] = ACTIONS(5958), + [1401] = { + [ts_builtin_sym_end] = ACTIONS(5968), + [anon_sym_POUNDinclude] = ACTIONS(5972), + [anon_sym_POUNDdefine] = ACTIONS(5972), + [anon_sym_LPAREN] = ACTIONS(5968), + [anon_sym_POUNDif] = ACTIONS(5972), + [anon_sym_POUNDendif] = ACTIONS(5972), + [anon_sym_POUNDifdef] = ACTIONS(5972), + [anon_sym_POUNDifndef] = ACTIONS(5972), + [anon_sym_POUNDelse] = ACTIONS(5972), + [sym_preproc_directive] = ACTIONS(5976), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_extern] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_STAR] = ACTIONS(5968), + [anon_sym_static] = ACTIONS(5972), + [anon_sym_typedef] = ACTIONS(5972), + [anon_sym_auto] = ACTIONS(5972), + [anon_sym_register] = ACTIONS(5972), + [anon_sym_const] = ACTIONS(5972), + [anon_sym_restrict] = ACTIONS(5972), + [anon_sym_volatile] = ACTIONS(5972), + [sym_function_specifier] = ACTIONS(5972), + [anon_sym_unsigned] = ACTIONS(5972), + [anon_sym_long] = ACTIONS(5972), + [anon_sym_short] = ACTIONS(5972), + [anon_sym_enum] = ACTIONS(5972), + [anon_sym_struct] = ACTIONS(5972), + [anon_sym_union] = ACTIONS(5972), + [anon_sym_if] = ACTIONS(5972), + [anon_sym_else] = ACTIONS(5972), + [anon_sym_switch] = ACTIONS(5972), + [anon_sym_case] = ACTIONS(5972), + [anon_sym_default] = ACTIONS(5972), + [anon_sym_while] = ACTIONS(5972), + [anon_sym_do] = ACTIONS(5972), + [anon_sym_for] = ACTIONS(5972), + [anon_sym_return] = ACTIONS(5972), + [anon_sym_break] = ACTIONS(5972), + [anon_sym_continue] = ACTIONS(5972), + [anon_sym_goto] = ACTIONS(5972), + [anon_sym_AMP] = ACTIONS(5968), + [anon_sym_BANG] = ACTIONS(5968), + [anon_sym_TILDE] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5972), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_sizeof] = ACTIONS(5972), + [sym_number_literal] = ACTIONS(5972), + [sym_char_literal] = ACTIONS(5972), + [sym_string_literal] = ACTIONS(5968), + [sym_identifier] = ACTIONS(5976), [sym_comment] = ACTIONS(123), }, - [1398] = { - [sym_argument_list] = STATE(968), + [1402] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4514), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_COMMA] = ACTIONS(4531), [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5980), [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4540), [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4543), [anon_sym_COLON] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(4529), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_LT_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_GT_EQ] = ACTIONS(4532), - [anon_sym_AMP_EQ] = ACTIONS(4532), - [anon_sym_CARET_EQ] = ACTIONS(4532), - [anon_sym_PIPE_EQ] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4535), - [anon_sym_PIPE_PIPE] = ACTIONS(4538), - [anon_sym_AMP_AMP] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym_EQ_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4544), - [anon_sym_GT] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4547), - [anon_sym_GT_EQ] = ACTIONS(4547), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_PLUS_PLUS] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), + [anon_sym_QMARK] = ACTIONS(4546), + [anon_sym_STAR_EQ] = ACTIONS(4549), + [anon_sym_SLASH_EQ] = ACTIONS(4549), + [anon_sym_PERCENT_EQ] = ACTIONS(4549), + [anon_sym_PLUS_EQ] = ACTIONS(4549), + [anon_sym_DASH_EQ] = ACTIONS(4549), + [anon_sym_LT_LT_EQ] = ACTIONS(4549), + [anon_sym_GT_GT_EQ] = ACTIONS(4549), + [anon_sym_AMP_EQ] = ACTIONS(4549), + [anon_sym_CARET_EQ] = ACTIONS(4549), + [anon_sym_PIPE_EQ] = ACTIONS(4549), + [anon_sym_AMP] = ACTIONS(4552), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_AMP_AMP] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4552), + [anon_sym_CARET] = ACTIONS(4552), + [anon_sym_EQ_EQ] = ACTIONS(4558), + [anon_sym_BANG_EQ] = ACTIONS(4558), + [anon_sym_LT] = ACTIONS(4561), + [anon_sym_GT] = ACTIONS(4561), + [anon_sym_LT_EQ] = ACTIONS(4564), + [anon_sym_GT_EQ] = ACTIONS(4564), + [anon_sym_LT_LT] = ACTIONS(4567), + [anon_sym_GT_GT] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_DASH_GT] = ACTIONS(4573), [sym_comment] = ACTIONS(123), }, - [1399] = { + [1403] = { [ts_builtin_sym_end] = ACTIONS(504), [anon_sym_POUNDinclude] = ACTIONS(506), [anon_sym_POUNDdefine] = ACTIONS(506), @@ -65172,22 +65342,22 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(504), [anon_sym_extern] = ACTIONS(506), [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(5965), + [anon_sym_RBRACE] = ACTIONS(5983), [anon_sym_STAR] = ACTIONS(504), [anon_sym_static] = ACTIONS(506), [anon_sym_typedef] = ACTIONS(506), [anon_sym_auto] = ACTIONS(506), [anon_sym_register] = ACTIONS(506), - [anon_sym_const] = ACTIONS(5971), - [anon_sym_restrict] = ACTIONS(5971), - [anon_sym_volatile] = ACTIONS(5971), + [anon_sym_const] = ACTIONS(5989), + [anon_sym_restrict] = ACTIONS(5989), + [anon_sym_volatile] = ACTIONS(5989), [sym_function_specifier] = ACTIONS(506), - [anon_sym_unsigned] = ACTIONS(5971), - [anon_sym_long] = ACTIONS(5971), - [anon_sym_short] = ACTIONS(5971), - [anon_sym_enum] = ACTIONS(5971), - [anon_sym_struct] = ACTIONS(5971), - [anon_sym_union] = ACTIONS(5971), + [anon_sym_unsigned] = ACTIONS(5989), + [anon_sym_long] = ACTIONS(5989), + [anon_sym_short] = ACTIONS(5989), + [anon_sym_enum] = ACTIONS(5989), + [anon_sym_struct] = ACTIONS(5989), + [anon_sym_union] = ACTIONS(5989), [anon_sym_if] = ACTIONS(506), [anon_sym_else] = ACTIONS(506), [anon_sym_switch] = ACTIONS(506), @@ -65211,76 +65381,76 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(506), [sym_char_literal] = ACTIONS(506), [sym_string_literal] = ACTIONS(504), - [sym_identifier] = ACTIONS(5977), + [sym_identifier] = ACTIONS(5995), [sym_comment] = ACTIONS(123), }, - [1400] = { - [sym_argument_list] = STATE(968), + [1404] = { + [sym_argument_list] = STATE(972), [anon_sym_LF] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(4215), - [anon_sym_COMMA] = ACTIONS(5983), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(6001), [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(5989), - [anon_sym_RBRACE] = ACTIONS(5992), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_SEMI] = ACTIONS(6007), + [anon_sym_RBRACE] = ACTIONS(6010), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4238), [anon_sym_RBRACK] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(4224), + [anon_sym_EQ] = ACTIONS(4241), [anon_sym_COLON] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(4227), - [anon_sym_STAR_EQ] = ACTIONS(4230), - [anon_sym_SLASH_EQ] = ACTIONS(4230), - [anon_sym_PERCENT_EQ] = ACTIONS(4230), - [anon_sym_PLUS_EQ] = ACTIONS(4230), - [anon_sym_DASH_EQ] = ACTIONS(4230), - [anon_sym_LT_LT_EQ] = ACTIONS(4230), - [anon_sym_GT_GT_EQ] = ACTIONS(4230), - [anon_sym_AMP_EQ] = ACTIONS(4230), - [anon_sym_CARET_EQ] = ACTIONS(4230), - [anon_sym_PIPE_EQ] = ACTIONS(4230), - [anon_sym_AMP] = ACTIONS(4233), - [anon_sym_PIPE_PIPE] = ACTIONS(4236), - [anon_sym_AMP_AMP] = ACTIONS(4236), - [anon_sym_PIPE] = ACTIONS(4233), - [anon_sym_CARET] = ACTIONS(4233), - [anon_sym_EQ_EQ] = ACTIONS(4239), - [anon_sym_BANG_EQ] = ACTIONS(4239), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4245), - [anon_sym_GT_EQ] = ACTIONS(4245), - [anon_sym_LT_LT] = ACTIONS(4248), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_SLASH] = ACTIONS(4218), - [anon_sym_PERCENT] = ACTIONS(4218), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_PLUS_PLUS] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_DASH_GT] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4244), + [anon_sym_STAR_EQ] = ACTIONS(4247), + [anon_sym_SLASH_EQ] = ACTIONS(4247), + [anon_sym_PERCENT_EQ] = ACTIONS(4247), + [anon_sym_PLUS_EQ] = ACTIONS(4247), + [anon_sym_DASH_EQ] = ACTIONS(4247), + [anon_sym_LT_LT_EQ] = ACTIONS(4247), + [anon_sym_GT_GT_EQ] = ACTIONS(4247), + [anon_sym_AMP_EQ] = ACTIONS(4247), + [anon_sym_CARET_EQ] = ACTIONS(4247), + [anon_sym_PIPE_EQ] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE] = ACTIONS(4250), + [anon_sym_CARET] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4256), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_LT_LT] = ACTIONS(4265), + [anon_sym_GT_GT] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4268), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_DASH_GT] = ACTIONS(4271), [sym_comment] = ACTIONS(123), }, - [1401] = { - [anon_sym_COMMA] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(3887), + [1405] = { + [anon_sym_COMMA] = ACTIONS(6015), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(3904), [sym_comment] = ACTIONS(123), }, - [1402] = { - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(837), - [anon_sym_COLON] = ACTIONS(837), + [1406] = { + [anon_sym_LPAREN] = ACTIONS(6019), + [anon_sym_COMMA] = ACTIONS(6019), + [anon_sym_RPAREN] = ACTIONS(6019), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(843), [sym_comment] = ACTIONS(123), }, - [1403] = { + [1407] = { [sym_type_qualifier] = STATE(207), - [sym__expression] = STATE(1191), + [sym__expression] = STATE(1195), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -65300,7 +65470,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6023), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -65318,20 +65488,20 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1404] = { - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), + [1408] = { + [anon_sym_LPAREN] = ACTIONS(6025), + [anon_sym_COMMA] = ACTIONS(6025), + [anon_sym_RPAREN] = ACTIONS(6025), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(6025), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(847), [sym_comment] = ACTIONS(123), }, - [1405] = { + [1409] = { [sym_type_qualifier] = STATE(199), - [sym__expression] = STATE(1409), + [sym__expression] = STATE(1413), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -65349,10 +65519,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [aux_sym_array_declarator_repeat1] = STATE(1403), + [aux_sym_array_declarator_repeat1] = STATE(1407), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(2942), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -65370,23 +65540,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1406] = { - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_COLON] = ACTIONS(833), + [1410] = { + [anon_sym_LPAREN] = ACTIONS(6029), + [anon_sym_COMMA] = ACTIONS(6029), + [anon_sym_RPAREN] = ACTIONS(6029), + [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_LBRACK] = ACTIONS(6029), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_COLON] = ACTIONS(839), [sym_comment] = ACTIONS(123), }, - [1407] = { + [1411] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(6015), + [anon_sym_RBRACK] = ACTIONS(6033), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -65422,9 +65592,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1408] = { + [1412] = { [sym_type_qualifier] = STATE(207), - [sym__expression] = STATE(1409), + [sym__expression] = STATE(1413), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -65444,8 +65614,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(514), - [anon_sym_static] = ACTIONS(3871), - [anon_sym_RBRACK] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(3888), + [anon_sym_RBRACK] = ACTIONS(2942), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -65463,12 +65633,12 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1409] = { + [1413] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(6005), + [anon_sym_RBRACK] = ACTIONS(6023), [anon_sym_EQ] = ACTIONS(608), [anon_sym_QMARK] = ACTIONS(610), [anon_sym_STAR_EQ] = ACTIONS(612), @@ -65504,19 +65674,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1410] = { + [1414] = { [anon_sym_LF] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(6017), - [anon_sym_COMMA] = ACTIONS(6017), - [anon_sym_RPAREN] = ACTIONS(6017), - [anon_sym_SEMI] = ACTIONS(6022), - [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(6035), + [anon_sym_COMMA] = ACTIONS(6035), + [anon_sym_RPAREN] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_RBRACE] = ACTIONS(634), [anon_sym_STAR] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(6025), + [anon_sym_LBRACK] = ACTIONS(6043), [anon_sym_RBRACK] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_COLON] = ACTIONS(6022), + [anon_sym_EQ] = ACTIONS(6049), + [anon_sym_COLON] = ACTIONS(6040), [anon_sym_QMARK] = ACTIONS(634), [anon_sym_STAR_EQ] = ACTIONS(634), [anon_sym_SLASH_EQ] = ACTIONS(634), @@ -65547,27 +65717,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(636), [anon_sym_DASH_DASH] = ACTIONS(634), [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_DOT] = ACTIONS(2991), [anon_sym_DASH_GT] = ACTIONS(634), [sym_comment] = ACTIONS(123), }, - [1411] = { - [sym__declarator] = STATE(268), - [sym__abstract_declarator] = STATE(269), - [sym_pointer_declarator] = STATE(240), + [1415] = { + [sym__declaration_specifiers] = STATE(229), + [sym__declarator] = STATE(271), + [sym__abstract_declarator] = STATE(272), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(200), + [sym_storage_class_specifier] = STATE(14), + [sym_type_qualifier] = STATE(1356), + [sym__type_specifier] = STATE(1422), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), - [sym__expression] = STATE(1002), - [sym_comma_expression] = STATE(1003), + [sym_parameter_type_list] = STATE(273), + [sym_parameter_declaration] = STATE(227), + [sym__expression] = STATE(1006), + [sym_comma_expression] = STATE(1007), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -65584,17 +65758,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1251), + [sym_type_name] = STATE(1255), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_array_declarator_repeat1] = STATE(204), - [aux_sym_sized_type_specifier_repeat1] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6037), + [aux_sym_sized_type_specifier_repeat1] = STATE(49), + [anon_sym_LPAREN] = ACTIONS(6053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(6055), [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_static] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(147), + [anon_sym_auto] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), + [sym_function_specifier] = ACTIONS(151), [anon_sym_unsigned] = ACTIONS(153), [anon_sym_long] = ACTIONS(153), [anon_sym_short] = ACTIONS(153), @@ -65612,68 +65795,68 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6039), + [sym_identifier] = ACTIONS(6057), [sym_comment] = ACTIONS(123), }, - [1412] = { - [sym__declarator] = STATE(1336), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1416] = { + [sym__declarator] = STATE(1340), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym__expression] = STATE(1250), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2917), + [sym__expression] = STATE(1254), + [sym_conditional_expression] = STATE(951), + [sym_assignment_expression] = STATE(951), + [sym_pointer_expression] = STATE(951), + [sym_logical_expression] = STATE(951), + [sym_bitwise_expression] = STATE(951), + [sym_equality_expression] = STATE(951), + [sym_relational_expression] = STATE(951), + [sym_shift_expression] = STATE(951), + [sym_math_expression] = STATE(951), + [sym_cast_expression] = STATE(951), + [sym_sizeof_expression] = STATE(951), + [sym_subscript_expression] = STATE(951), + [sym_call_expression] = STATE(951), + [sym_field_expression] = STATE(951), + [sym_compound_literal_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(951), + [sym_concatenated_string] = STATE(951), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_sizeof] = ACTIONS(2934), [sym_number_literal] = ACTIONS(235), [sym_char_literal] = ACTIONS(235), [sym_string_literal] = ACTIONS(237), - [sym_identifier] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2936), [sym_comment] = ACTIONS(123), }, - [1413] = { + [1417] = { [anon_sym_LF] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_COMMA] = ACTIONS(6041), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_SEMI] = ACTIONS(6041), - [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_SEMI] = ACTIONS(6059), + [anon_sym_LBRACE] = ACTIONS(821), [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6059), [anon_sym_RBRACK] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(6044), - [anon_sym_COLON] = ACTIONS(6041), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_COLON] = ACTIONS(6059), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -65708,68 +65891,72 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1414] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6050), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_RBRACE] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6054), - [anon_sym_LBRACK] = ACTIONS(6058), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6062), - [anon_sym_COLON] = ACTIONS(6047), - [anon_sym_QMARK] = ACTIONS(6066), - [anon_sym_STAR_EQ] = ACTIONS(6070), - [anon_sym_SLASH_EQ] = ACTIONS(6070), - [anon_sym_PERCENT_EQ] = ACTIONS(6070), - [anon_sym_PLUS_EQ] = ACTIONS(6070), - [anon_sym_DASH_EQ] = ACTIONS(6070), - [anon_sym_LT_LT_EQ] = ACTIONS(6070), - [anon_sym_GT_GT_EQ] = ACTIONS(6070), - [anon_sym_AMP_EQ] = ACTIONS(6070), - [anon_sym_CARET_EQ] = ACTIONS(6070), - [anon_sym_PIPE_EQ] = ACTIONS(6070), - [anon_sym_AMP] = ACTIONS(6074), - [anon_sym_PIPE_PIPE] = ACTIONS(6078), - [anon_sym_AMP_AMP] = ACTIONS(6078), - [anon_sym_PIPE] = ACTIONS(6074), - [anon_sym_CARET] = ACTIONS(6074), - [anon_sym_EQ_EQ] = ACTIONS(6082), - [anon_sym_BANG_EQ] = ACTIONS(6082), - [anon_sym_LT] = ACTIONS(6086), - [anon_sym_GT] = ACTIONS(6086), - [anon_sym_LT_EQ] = ACTIONS(6090), - [anon_sym_GT_EQ] = ACTIONS(6090), - [anon_sym_LT_LT] = ACTIONS(6094), - [anon_sym_GT_GT] = ACTIONS(6094), - [anon_sym_PLUS] = ACTIONS(6054), - [anon_sym_DASH] = ACTIONS(6054), - [anon_sym_SLASH] = ACTIONS(6054), - [anon_sym_PERCENT] = ACTIONS(6054), - [anon_sym_DASH_DASH] = ACTIONS(6098), - [anon_sym_PLUS_PLUS] = ACTIONS(6098), - [anon_sym_DOT] = ACTIONS(6102), - [anon_sym_DASH_GT] = ACTIONS(6102), + [1418] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(6065), + [anon_sym_LPAREN] = ACTIONS(6068), + [anon_sym_COMMA] = ACTIONS(6065), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(6065), + [anon_sym_RBRACE] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6072), + [anon_sym_LBRACK] = ACTIONS(6076), + [anon_sym_RBRACK] = ACTIONS(6065), + [anon_sym_EQ] = ACTIONS(6080), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_QMARK] = ACTIONS(6084), + [anon_sym_STAR_EQ] = ACTIONS(6088), + [anon_sym_SLASH_EQ] = ACTIONS(6088), + [anon_sym_PERCENT_EQ] = ACTIONS(6088), + [anon_sym_PLUS_EQ] = ACTIONS(6088), + [anon_sym_DASH_EQ] = ACTIONS(6088), + [anon_sym_LT_LT_EQ] = ACTIONS(6088), + [anon_sym_GT_GT_EQ] = ACTIONS(6088), + [anon_sym_AMP_EQ] = ACTIONS(6088), + [anon_sym_CARET_EQ] = ACTIONS(6088), + [anon_sym_PIPE_EQ] = ACTIONS(6088), + [anon_sym_AMP] = ACTIONS(6092), + [anon_sym_PIPE_PIPE] = ACTIONS(6096), + [anon_sym_AMP_AMP] = ACTIONS(6096), + [anon_sym_PIPE] = ACTIONS(6092), + [anon_sym_CARET] = ACTIONS(6092), + [anon_sym_EQ_EQ] = ACTIONS(6100), + [anon_sym_BANG_EQ] = ACTIONS(6100), + [anon_sym_LT] = ACTIONS(6104), + [anon_sym_GT] = ACTIONS(6104), + [anon_sym_LT_EQ] = ACTIONS(6108), + [anon_sym_GT_EQ] = ACTIONS(6108), + [anon_sym_LT_LT] = ACTIONS(6112), + [anon_sym_GT_GT] = ACTIONS(6112), + [anon_sym_PLUS] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6072), + [anon_sym_SLASH] = ACTIONS(6072), + [anon_sym_PERCENT] = ACTIONS(6072), + [anon_sym_DASH_DASH] = ACTIONS(6116), + [anon_sym_PLUS_PLUS] = ACTIONS(6116), + [anon_sym_DOT] = ACTIONS(6120), + [anon_sym_DASH_GT] = ACTIONS(6120), [sym_comment] = ACTIONS(123), }, - [1415] = { - [sym__declarator] = STATE(268), - [sym__abstract_declarator] = STATE(269), - [sym_pointer_declarator] = STATE(240), + [1419] = { + [sym__declaration_specifiers] = STATE(229), + [sym__declarator] = STATE(271), + [sym__abstract_declarator] = STATE(272), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(200), + [sym_storage_class_specifier] = STATE(14), + [sym_type_qualifier] = STATE(1356), + [sym__type_specifier] = STATE(1422), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), + [sym_parameter_type_list] = STATE(273), + [sym_parameter_declaration] = STATE(227), [sym__expression] = STATE(201), [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(34), @@ -65788,17 +65975,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(448), + [sym_type_name] = STATE(452), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_array_declarator_repeat1] = STATE(204), - [aux_sym_sized_type_specifier_repeat1] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6037), + [aux_sym_sized_type_specifier_repeat1] = STATE(49), + [anon_sym_LPAREN] = ACTIONS(6053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(6055), [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_static] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(147), + [anon_sym_auto] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), + [sym_function_specifier] = ACTIONS(151), [anon_sym_unsigned] = ACTIONS(153), [anon_sym_long] = ACTIONS(153), [anon_sym_short] = ACTIONS(153), @@ -65816,19 +66012,19 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6039), + [sym_identifier] = ACTIONS(6057), [sym_comment] = ACTIONS(123), }, - [1416] = { - [sym__declarator] = STATE(265), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1420] = { + [sym__declarator] = STATE(266), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym__expression] = STATE(403), + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -65846,10 +66042,10 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6106), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(6124), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(6055), + [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), [anon_sym_TILDE] = ACTIONS(211), @@ -65861,15 +66057,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6109), + [sym_identifier] = ACTIONS(6127), [sym_comment] = ACTIONS(123), }, - [1417] = { - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(375), - [anon_sym_RPAREN] = ACTIONS(6116), + [1421] = { + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(6134), [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(6116), + [anon_sym_LBRACK] = ACTIONS(6134), [anon_sym_EQ] = ACTIONS(383), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), @@ -65903,15 +66099,40 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(375), [anon_sym_DASH_GT] = ACTIONS(375), + [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1418] = { - [anon_sym_LPAREN] = ACTIONS(6041), + [1422] = { + [sym__declarator] = STATE(241), + [sym__abstract_declarator] = STATE(1423), + [sym_pointer_declarator] = STATE(243), + [sym_abstract_pointer_declarator] = STATE(213), + [sym_function_declarator] = STATE(243), + [sym_abstract_function_declarator] = STATE(213), + [sym_array_declarator] = STATE(243), + [sym_abstract_array_declarator] = STATE(213), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(6138), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(726), + [sym_identifier] = ACTIONS(423), + [sym_comment] = ACTIONS(123), + }, + [1423] = { + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(763), + [sym_comment] = ACTIONS(123), + }, + [1424] = { + [anon_sym_LPAREN] = ACTIONS(6059), [anon_sym_COMMA] = ACTIONS(375), - [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6059), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_LBRACK] = ACTIONS(6059), [anon_sym_EQ] = ACTIONS(383), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), @@ -65947,7 +66168,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1419] = { + [1425] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -65972,7 +66193,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1458), + [sym_type_name] = STATE(1464), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -66002,7 +66223,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1420] = { + [1426] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -66036,7 +66257,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(1428), + [sym__expression] = STATE(1434), [sym_comma_expression] = STATE(46), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -66054,29 +66275,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(351), - [sym__initializer_list_contents] = STATE(352), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(355), + [sym__initializer_list_contents] = STATE(356), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(672), + [aux_sym_translation_unit_repeat1] = STATE(676), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym__initializer_list_contents_repeat1] = STATE(354), + [aux_sym__initializer_list_contents_repeat1] = STATE(358), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2793), [anon_sym_POUNDif] = ACTIONS(133), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(6120), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(1024), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), [anon_sym_auto] = ACTIONS(147), @@ -66102,113 +66323,113 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), [anon_sym_goto] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(1036), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(271), [sym_comment] = ACTIONS(123), }, - [1421] = { - [ts_builtin_sym_end] = ACTIONS(6122), - [anon_sym_POUNDinclude] = ACTIONS(6125), - [anon_sym_POUNDdefine] = ACTIONS(6125), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(6128), - [anon_sym_COMMA] = ACTIONS(6136), - [anon_sym_RPAREN] = ACTIONS(6136), - [anon_sym_POUNDif] = ACTIONS(6125), - [anon_sym_POUNDendif] = ACTIONS(6125), - [anon_sym_POUNDifdef] = ACTIONS(6125), - [anon_sym_POUNDifndef] = ACTIONS(6125), - [anon_sym_POUNDelse] = ACTIONS(6125), - [sym_preproc_directive] = ACTIONS(6142), - [anon_sym_SEMI] = ACTIONS(6128), - [anon_sym_extern] = ACTIONS(6125), - [anon_sym_LBRACE] = ACTIONS(6122), - [anon_sym_RBRACE] = ACTIONS(6145), - [anon_sym_STAR] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6136), - [anon_sym_static] = ACTIONS(6125), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_typedef] = ACTIONS(6125), - [anon_sym_auto] = ACTIONS(6125), - [anon_sym_register] = ACTIONS(6125), - [anon_sym_const] = ACTIONS(6125), - [anon_sym_restrict] = ACTIONS(6125), - [anon_sym_volatile] = ACTIONS(6125), - [sym_function_specifier] = ACTIONS(6125), - [anon_sym_unsigned] = ACTIONS(6125), - [anon_sym_long] = ACTIONS(6125), - [anon_sym_short] = ACTIONS(6125), - [anon_sym_enum] = ACTIONS(6125), - [anon_sym_struct] = ACTIONS(6125), - [anon_sym_union] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6136), - [anon_sym_if] = ACTIONS(6125), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_case] = ACTIONS(6125), - [anon_sym_default] = ACTIONS(6125), - [anon_sym_while] = ACTIONS(6125), - [anon_sym_do] = ACTIONS(6125), - [anon_sym_for] = ACTIONS(6125), - [anon_sym_return] = ACTIONS(6125), - [anon_sym_break] = ACTIONS(6125), - [anon_sym_continue] = ACTIONS(6125), - [anon_sym_goto] = ACTIONS(6125), - [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(6157), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(6122), - [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(6157), - [anon_sym_DASH] = ACTIONS(6157), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(6145), - [anon_sym_PLUS_PLUS] = ACTIONS(6145), - [anon_sym_sizeof] = ACTIONS(6125), - [anon_sym_DOT] = ACTIONS(1031), - [anon_sym_DASH_GT] = ACTIONS(1031), - [sym_number_literal] = ACTIONS(6125), - [sym_char_literal] = ACTIONS(6125), - [sym_string_literal] = ACTIONS(6122), - [sym_identifier] = ACTIONS(6161), + [1427] = { + [ts_builtin_sym_end] = ACTIONS(6146), + [anon_sym_POUNDinclude] = ACTIONS(6149), + [anon_sym_POUNDdefine] = ACTIONS(6149), + [anon_sym_LF] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(6152), + [anon_sym_COMMA] = ACTIONS(6160), + [anon_sym_RPAREN] = ACTIONS(6160), + [anon_sym_POUNDif] = ACTIONS(6149), + [anon_sym_POUNDendif] = ACTIONS(6149), + [anon_sym_POUNDifdef] = ACTIONS(6149), + [anon_sym_POUNDifndef] = ACTIONS(6149), + [anon_sym_POUNDelse] = ACTIONS(6149), + [sym_preproc_directive] = ACTIONS(6166), + [anon_sym_SEMI] = ACTIONS(6152), + [anon_sym_extern] = ACTIONS(6149), + [anon_sym_LBRACE] = ACTIONS(6146), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_LBRACK] = ACTIONS(6160), + [anon_sym_static] = ACTIONS(6149), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(6149), + [anon_sym_auto] = ACTIONS(6149), + [anon_sym_register] = ACTIONS(6149), + [anon_sym_const] = ACTIONS(6149), + [anon_sym_restrict] = ACTIONS(6149), + [anon_sym_volatile] = ACTIONS(6149), + [sym_function_specifier] = ACTIONS(6149), + [anon_sym_unsigned] = ACTIONS(6149), + [anon_sym_long] = ACTIONS(6149), + [anon_sym_short] = ACTIONS(6149), + [anon_sym_enum] = ACTIONS(6149), + [anon_sym_struct] = ACTIONS(6149), + [anon_sym_union] = ACTIONS(6149), + [anon_sym_COLON] = ACTIONS(6160), + [anon_sym_if] = ACTIONS(6149), + [anon_sym_else] = ACTIONS(1620), + [anon_sym_switch] = ACTIONS(6149), + [anon_sym_case] = ACTIONS(6149), + [anon_sym_default] = ACTIONS(6149), + [anon_sym_while] = ACTIONS(6149), + [anon_sym_do] = ACTIONS(6149), + [anon_sym_for] = ACTIONS(6149), + [anon_sym_return] = ACTIONS(6149), + [anon_sym_break] = ACTIONS(6149), + [anon_sym_continue] = ACTIONS(6149), + [anon_sym_goto] = ACTIONS(6149), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(6181), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(6149), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(6146), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(6169), + [anon_sym_PLUS_PLUS] = ACTIONS(6169), + [anon_sym_sizeof] = ACTIONS(6149), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(1046), + [sym_number_literal] = ACTIONS(6149), + [sym_char_literal] = ACTIONS(6149), + [sym_string_literal] = ACTIONS(6146), + [sym_identifier] = ACTIONS(6185), [sym_comment] = ACTIONS(123), }, - [1422] = { - [sym__expression] = STATE(1456), + [1428] = { + [sym__expression] = STATE(1462), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66226,24 +66447,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1423] = { - [sym__expression] = STATE(1455), + [1429] = { + [sym__expression] = STATE(1461), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66261,24 +66482,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1424] = { - [sym__expression] = STATE(1454), + [1430] = { + [sym__expression] = STATE(1460), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66296,24 +66517,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1425] = { - [sym__expression] = STATE(1453), + [1431] = { + [sym__expression] = STATE(1459), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66331,24 +66552,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1426] = { - [sym__expression] = STATE(1449), + [1432] = { + [sym__expression] = STATE(1455), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66366,31 +66587,31 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(6192), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1427] = { + [1433] = { [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_COMMA] = ACTIONS(5425), + [anon_sym_COMMA] = ACTIONS(5443), [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_RBRACE] = ACTIONS(5425), + [anon_sym_RBRACE] = ACTIONS(5443), [anon_sym_STAR] = ACTIONS(380), [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(5428), - [anon_sym_COLON] = ACTIONS(5431), + [anon_sym_EQ] = ACTIONS(5446), + [anon_sym_COLON] = ACTIONS(5449), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -66426,50 +66647,50 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1428] = { + [1434] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(6170), + [anon_sym_COMMA] = ACTIONS(6194), [anon_sym_SEMI] = ACTIONS(433), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(6197), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_QMARK] = ACTIONS(6177), - [anon_sym_STAR_EQ] = ACTIONS(6179), - [anon_sym_SLASH_EQ] = ACTIONS(6179), - [anon_sym_PERCENT_EQ] = ACTIONS(6179), - [anon_sym_PLUS_EQ] = ACTIONS(6179), - [anon_sym_DASH_EQ] = ACTIONS(6179), - [anon_sym_LT_LT_EQ] = ACTIONS(6179), - [anon_sym_GT_GT_EQ] = ACTIONS(6179), - [anon_sym_AMP_EQ] = ACTIONS(6179), - [anon_sym_CARET_EQ] = ACTIONS(6179), - [anon_sym_PIPE_EQ] = ACTIONS(6179), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_PIPE_PIPE] = ACTIONS(6183), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_CARET] = ACTIONS(6181), - [anon_sym_EQ_EQ] = ACTIONS(6185), - [anon_sym_BANG_EQ] = ACTIONS(6185), - [anon_sym_LT] = ACTIONS(6187), - [anon_sym_GT] = ACTIONS(6187), - [anon_sym_LT_EQ] = ACTIONS(6189), - [anon_sym_GT_EQ] = ACTIONS(6189), - [anon_sym_LT_LT] = ACTIONS(6191), - [anon_sym_GT_GT] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6173), - [anon_sym_DASH] = ACTIONS(6173), - [anon_sym_SLASH] = ACTIONS(6173), - [anon_sym_PERCENT] = ACTIONS(6173), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_QMARK] = ACTIONS(6201), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_AMP] = ACTIONS(6205), + [anon_sym_PIPE_PIPE] = ACTIONS(6207), + [anon_sym_AMP_AMP] = ACTIONS(6207), + [anon_sym_PIPE] = ACTIONS(6205), + [anon_sym_CARET] = ACTIONS(6205), + [anon_sym_EQ_EQ] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6209), + [anon_sym_LT] = ACTIONS(6211), + [anon_sym_GT] = ACTIONS(6211), + [anon_sym_LT_EQ] = ACTIONS(6213), + [anon_sym_GT_EQ] = ACTIONS(6213), + [anon_sym_LT_LT] = ACTIONS(6215), + [anon_sym_GT_GT] = ACTIONS(6215), + [anon_sym_PLUS] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_SLASH] = ACTIONS(6197), + [anon_sym_PERCENT] = ACTIONS(6197), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1429] = { + [1435] = { [sym__top_level_item] = STATE(53), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -66536,7 +66757,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(3853), + [anon_sym_RBRACE] = ACTIONS(3870), [anon_sym_STAR] = ACTIONS(145), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -66577,8 +66798,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(271), [sym_comment] = ACTIONS(123), }, - [1430] = { - [sym__expression] = STATE(1438), + [1436] = { + [sym__expression] = STATE(1444), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66596,24 +66817,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1431] = { - [sym__expression] = STATE(1444), + [1437] = { + [sym__expression] = STATE(1450), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66631,24 +66852,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1432] = { - [sym__expression] = STATE(1445), + [1438] = { + [sym__expression] = STATE(1451), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66682,8 +66903,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1433] = { - [sym__expression] = STATE(1442), + [1439] = { + [sym__expression] = STATE(1448), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66701,24 +66922,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1434] = { - [sym__expression] = STATE(1443), + [1440] = { + [sym__expression] = STATE(1449), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66736,24 +66957,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1435] = { - [sym__expression] = STATE(1441), + [1441] = { + [sym__expression] = STATE(1447), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66771,24 +66992,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1436] = { - [sym__expression] = STATE(1440), + [1442] = { + [sym__expression] = STATE(1446), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66806,24 +67027,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1437] = { - [sym__expression] = STATE(1439), + [1443] = { + [sym__expression] = STATE(1445), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -66841,330 +67062,330 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1438] = { + [1444] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4617), [anon_sym_COMMA] = ACTIONS(540), [anon_sym_SEMI] = ACTIONS(540), [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(4606), - [anon_sym_EQ] = ACTIONS(6196), - [anon_sym_QMARK] = ACTIONS(6199), - [anon_sym_STAR_EQ] = ACTIONS(6202), - [anon_sym_SLASH_EQ] = ACTIONS(6202), - [anon_sym_PERCENT_EQ] = ACTIONS(6202), - [anon_sym_PLUS_EQ] = ACTIONS(6202), - [anon_sym_DASH_EQ] = ACTIONS(6202), - [anon_sym_LT_LT_EQ] = ACTIONS(6202), - [anon_sym_GT_GT_EQ] = ACTIONS(6202), - [anon_sym_AMP_EQ] = ACTIONS(6202), - [anon_sym_CARET_EQ] = ACTIONS(6202), - [anon_sym_PIPE_EQ] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6205), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_CARET] = ACTIONS(6205), - [anon_sym_EQ_EQ] = ACTIONS(6211), - [anon_sym_BANG_EQ] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6214), - [anon_sym_GT] = ACTIONS(6214), - [anon_sym_LT_EQ] = ACTIONS(6217), - [anon_sym_GT_EQ] = ACTIONS(6217), - [anon_sym_LT_LT] = ACTIONS(6220), - [anon_sym_GT_GT] = ACTIONS(6220), - [anon_sym_PLUS] = ACTIONS(6193), - [anon_sym_DASH] = ACTIONS(6193), - [anon_sym_SLASH] = ACTIONS(6193), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_DASH_GT] = ACTIONS(4639), + [anon_sym_STAR] = ACTIONS(6217), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(6220), + [anon_sym_QMARK] = ACTIONS(6223), + [anon_sym_STAR_EQ] = ACTIONS(6226), + [anon_sym_SLASH_EQ] = ACTIONS(6226), + [anon_sym_PERCENT_EQ] = ACTIONS(6226), + [anon_sym_PLUS_EQ] = ACTIONS(6226), + [anon_sym_DASH_EQ] = ACTIONS(6226), + [anon_sym_LT_LT_EQ] = ACTIONS(6226), + [anon_sym_GT_GT_EQ] = ACTIONS(6226), + [anon_sym_AMP_EQ] = ACTIONS(6226), + [anon_sym_CARET_EQ] = ACTIONS(6226), + [anon_sym_PIPE_EQ] = ACTIONS(6226), + [anon_sym_AMP] = ACTIONS(6229), + [anon_sym_PIPE_PIPE] = ACTIONS(6232), + [anon_sym_AMP_AMP] = ACTIONS(6232), + [anon_sym_PIPE] = ACTIONS(6229), + [anon_sym_CARET] = ACTIONS(6229), + [anon_sym_EQ_EQ] = ACTIONS(6235), + [anon_sym_BANG_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6238), + [anon_sym_GT] = ACTIONS(6238), + [anon_sym_LT_EQ] = ACTIONS(6241), + [anon_sym_GT_EQ] = ACTIONS(6241), + [anon_sym_LT_LT] = ACTIONS(6244), + [anon_sym_GT_GT] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(6217), + [anon_sym_DASH] = ACTIONS(6217), + [anon_sym_SLASH] = ACTIONS(6217), + [anon_sym_PERCENT] = ACTIONS(6217), + [anon_sym_DASH_DASH] = ACTIONS(4653), + [anon_sym_PLUS_PLUS] = ACTIONS(4653), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(4656), [sym_comment] = ACTIONS(123), }, - [1439] = { + [1445] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4659), [anon_sym_COMMA] = ACTIONS(544), [anon_sym_SEMI] = ACTIONS(544), [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_LBRACK] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6229), - [anon_sym_STAR_EQ] = ACTIONS(6232), - [anon_sym_SLASH_EQ] = ACTIONS(6232), - [anon_sym_PERCENT_EQ] = ACTIONS(6232), - [anon_sym_PLUS_EQ] = ACTIONS(6232), - [anon_sym_DASH_EQ] = ACTIONS(6232), - [anon_sym_LT_LT_EQ] = ACTIONS(6232), - [anon_sym_GT_GT_EQ] = ACTIONS(6232), - [anon_sym_AMP_EQ] = ACTIONS(6232), - [anon_sym_CARET_EQ] = ACTIONS(6232), - [anon_sym_PIPE_EQ] = ACTIONS(6232), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6238), - [anon_sym_AMP_AMP] = ACTIONS(6238), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_EQ_EQ] = ACTIONS(6241), - [anon_sym_BANG_EQ] = ACTIONS(6241), - [anon_sym_LT] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6247), - [anon_sym_GT_EQ] = ACTIONS(6247), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6223), - [anon_sym_DASH_DASH] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4678), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_DASH_GT] = ACTIONS(4681), + [anon_sym_STAR] = ACTIONS(6247), + [anon_sym_LBRACK] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6253), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_AMP] = ACTIONS(6259), + [anon_sym_PIPE_PIPE] = ACTIONS(6262), + [anon_sym_AMP_AMP] = ACTIONS(6262), + [anon_sym_PIPE] = ACTIONS(6259), + [anon_sym_CARET] = ACTIONS(6259), + [anon_sym_EQ_EQ] = ACTIONS(6265), + [anon_sym_BANG_EQ] = ACTIONS(6265), + [anon_sym_LT] = ACTIONS(6268), + [anon_sym_GT] = ACTIONS(6268), + [anon_sym_LT_EQ] = ACTIONS(6271), + [anon_sym_GT_EQ] = ACTIONS(6271), + [anon_sym_LT_LT] = ACTIONS(6274), + [anon_sym_GT_GT] = ACTIONS(6274), + [anon_sym_PLUS] = ACTIONS(6247), + [anon_sym_DASH] = ACTIONS(6247), + [anon_sym_SLASH] = ACTIONS(6247), + [anon_sym_PERCENT] = ACTIONS(6247), + [anon_sym_DASH_DASH] = ACTIONS(4695), + [anon_sym_PLUS_PLUS] = ACTIONS(4695), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4698), [sym_comment] = ACTIONS(123), }, - [1440] = { + [1446] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4701), [anon_sym_COMMA] = ACTIONS(548), [anon_sym_SEMI] = ACTIONS(548), [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(4690), - [anon_sym_EQ] = ACTIONS(6256), - [anon_sym_QMARK] = ACTIONS(6259), - [anon_sym_STAR_EQ] = ACTIONS(6262), - [anon_sym_SLASH_EQ] = ACTIONS(6262), - [anon_sym_PERCENT_EQ] = ACTIONS(6262), - [anon_sym_PLUS_EQ] = ACTIONS(6262), - [anon_sym_DASH_EQ] = ACTIONS(6262), - [anon_sym_LT_LT_EQ] = ACTIONS(6262), - [anon_sym_GT_GT_EQ] = ACTIONS(6262), - [anon_sym_AMP_EQ] = ACTIONS(6262), - [anon_sym_CARET_EQ] = ACTIONS(6262), - [anon_sym_PIPE_EQ] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6265), - [anon_sym_PIPE_PIPE] = ACTIONS(6268), - [anon_sym_AMP_AMP] = ACTIONS(6268), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_CARET] = ACTIONS(6265), - [anon_sym_EQ_EQ] = ACTIONS(6271), - [anon_sym_BANG_EQ] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6274), - [anon_sym_GT] = ACTIONS(6274), - [anon_sym_LT_EQ] = ACTIONS(6277), - [anon_sym_GT_EQ] = ACTIONS(6277), - [anon_sym_LT_LT] = ACTIONS(6280), - [anon_sym_GT_GT] = ACTIONS(6280), - [anon_sym_PLUS] = ACTIONS(6253), - [anon_sym_DASH] = ACTIONS(6253), - [anon_sym_SLASH] = ACTIONS(6253), - [anon_sym_PERCENT] = ACTIONS(6253), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DOT] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(6280), + [anon_sym_QMARK] = ACTIONS(6283), + [anon_sym_STAR_EQ] = ACTIONS(6286), + [anon_sym_SLASH_EQ] = ACTIONS(6286), + [anon_sym_PERCENT_EQ] = ACTIONS(6286), + [anon_sym_PLUS_EQ] = ACTIONS(6286), + [anon_sym_DASH_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_EQ] = ACTIONS(6286), + [anon_sym_GT_GT_EQ] = ACTIONS(6286), + [anon_sym_AMP_EQ] = ACTIONS(6286), + [anon_sym_CARET_EQ] = ACTIONS(6286), + [anon_sym_PIPE_EQ] = ACTIONS(6286), + [anon_sym_AMP] = ACTIONS(6289), + [anon_sym_PIPE_PIPE] = ACTIONS(6292), + [anon_sym_AMP_AMP] = ACTIONS(6292), + [anon_sym_PIPE] = ACTIONS(6289), + [anon_sym_CARET] = ACTIONS(6289), + [anon_sym_EQ_EQ] = ACTIONS(6295), + [anon_sym_BANG_EQ] = ACTIONS(6295), + [anon_sym_LT] = ACTIONS(6298), + [anon_sym_GT] = ACTIONS(6298), + [anon_sym_LT_EQ] = ACTIONS(6301), + [anon_sym_GT_EQ] = ACTIONS(6301), + [anon_sym_LT_LT] = ACTIONS(6304), + [anon_sym_GT_GT] = ACTIONS(6304), + [anon_sym_PLUS] = ACTIONS(6277), + [anon_sym_DASH] = ACTIONS(6277), + [anon_sym_SLASH] = ACTIONS(6277), + [anon_sym_PERCENT] = ACTIONS(6277), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_DASH_GT] = ACTIONS(4740), [sym_comment] = ACTIONS(123), }, - [1441] = { + [1447] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4743), [anon_sym_COMMA] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(552), [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(6283), - [anon_sym_LBRACK] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(6286), - [anon_sym_QMARK] = ACTIONS(6289), - [anon_sym_STAR_EQ] = ACTIONS(6292), - [anon_sym_SLASH_EQ] = ACTIONS(6292), - [anon_sym_PERCENT_EQ] = ACTIONS(6292), - [anon_sym_PLUS_EQ] = ACTIONS(6292), - [anon_sym_DASH_EQ] = ACTIONS(6292), - [anon_sym_LT_LT_EQ] = ACTIONS(6292), - [anon_sym_GT_GT_EQ] = ACTIONS(6292), - [anon_sym_AMP_EQ] = ACTIONS(6292), - [anon_sym_CARET_EQ] = ACTIONS(6292), - [anon_sym_PIPE_EQ] = ACTIONS(6292), - [anon_sym_AMP] = ACTIONS(6295), - [anon_sym_PIPE_PIPE] = ACTIONS(6298), - [anon_sym_AMP_AMP] = ACTIONS(6298), - [anon_sym_PIPE] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_EQ_EQ] = ACTIONS(6301), - [anon_sym_BANG_EQ] = ACTIONS(6301), - [anon_sym_LT] = ACTIONS(6304), - [anon_sym_GT] = ACTIONS(6304), - [anon_sym_LT_EQ] = ACTIONS(6307), - [anon_sym_GT_EQ] = ACTIONS(6307), - [anon_sym_LT_LT] = ACTIONS(6310), - [anon_sym_GT_GT] = ACTIONS(6310), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_PERCENT] = ACTIONS(6283), - [anon_sym_DASH_DASH] = ACTIONS(4762), - [anon_sym_PLUS_PLUS] = ACTIONS(4762), - [anon_sym_DOT] = ACTIONS(4765), - [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_STAR] = ACTIONS(6307), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(6310), + [anon_sym_QMARK] = ACTIONS(6313), + [anon_sym_STAR_EQ] = ACTIONS(6316), + [anon_sym_SLASH_EQ] = ACTIONS(6316), + [anon_sym_PERCENT_EQ] = ACTIONS(6316), + [anon_sym_PLUS_EQ] = ACTIONS(6316), + [anon_sym_DASH_EQ] = ACTIONS(6316), + [anon_sym_LT_LT_EQ] = ACTIONS(6316), + [anon_sym_GT_GT_EQ] = ACTIONS(6316), + [anon_sym_AMP_EQ] = ACTIONS(6316), + [anon_sym_CARET_EQ] = ACTIONS(6316), + [anon_sym_PIPE_EQ] = ACTIONS(6316), + [anon_sym_AMP] = ACTIONS(6319), + [anon_sym_PIPE_PIPE] = ACTIONS(6322), + [anon_sym_AMP_AMP] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(6319), + [anon_sym_CARET] = ACTIONS(6319), + [anon_sym_EQ_EQ] = ACTIONS(6325), + [anon_sym_BANG_EQ] = ACTIONS(6325), + [anon_sym_LT] = ACTIONS(6328), + [anon_sym_GT] = ACTIONS(6328), + [anon_sym_LT_EQ] = ACTIONS(6331), + [anon_sym_GT_EQ] = ACTIONS(6331), + [anon_sym_LT_LT] = ACTIONS(6334), + [anon_sym_GT_GT] = ACTIONS(6334), + [anon_sym_PLUS] = ACTIONS(6307), + [anon_sym_DASH] = ACTIONS(6307), + [anon_sym_SLASH] = ACTIONS(6307), + [anon_sym_PERCENT] = ACTIONS(6307), + [anon_sym_DASH_DASH] = ACTIONS(4779), + [anon_sym_PLUS_PLUS] = ACTIONS(4779), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_DASH_GT] = ACTIONS(4782), [sym_comment] = ACTIONS(123), }, - [1442] = { + [1448] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4785), [anon_sym_COMMA] = ACTIONS(556), [anon_sym_SEMI] = ACTIONS(556), [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_EQ] = ACTIONS(6316), - [anon_sym_QMARK] = ACTIONS(6319), - [anon_sym_STAR_EQ] = ACTIONS(6322), - [anon_sym_SLASH_EQ] = ACTIONS(6322), - [anon_sym_PERCENT_EQ] = ACTIONS(6322), - [anon_sym_PLUS_EQ] = ACTIONS(6322), - [anon_sym_DASH_EQ] = ACTIONS(6322), - [anon_sym_LT_LT_EQ] = ACTIONS(6322), - [anon_sym_GT_GT_EQ] = ACTIONS(6322), - [anon_sym_AMP_EQ] = ACTIONS(6322), - [anon_sym_CARET_EQ] = ACTIONS(6322), - [anon_sym_PIPE_EQ] = ACTIONS(6322), - [anon_sym_AMP] = ACTIONS(6325), - [anon_sym_PIPE_PIPE] = ACTIONS(6328), - [anon_sym_AMP_AMP] = ACTIONS(6328), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_CARET] = ACTIONS(6325), - [anon_sym_EQ_EQ] = ACTIONS(6331), - [anon_sym_BANG_EQ] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6334), - [anon_sym_GT] = ACTIONS(6334), - [anon_sym_LT_EQ] = ACTIONS(6337), - [anon_sym_GT_EQ] = ACTIONS(6337), - [anon_sym_LT_LT] = ACTIONS(6340), - [anon_sym_GT_GT] = ACTIONS(6340), - [anon_sym_PLUS] = ACTIONS(6313), - [anon_sym_DASH] = ACTIONS(6313), - [anon_sym_SLASH] = ACTIONS(6313), - [anon_sym_PERCENT] = ACTIONS(6313), - [anon_sym_DASH_DASH] = ACTIONS(4804), - [anon_sym_PLUS_PLUS] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(6337), + [anon_sym_LBRACK] = ACTIONS(4791), + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_QMARK] = ACTIONS(6343), + [anon_sym_STAR_EQ] = ACTIONS(6346), + [anon_sym_SLASH_EQ] = ACTIONS(6346), + [anon_sym_PERCENT_EQ] = ACTIONS(6346), + [anon_sym_PLUS_EQ] = ACTIONS(6346), + [anon_sym_DASH_EQ] = ACTIONS(6346), + [anon_sym_LT_LT_EQ] = ACTIONS(6346), + [anon_sym_GT_GT_EQ] = ACTIONS(6346), + [anon_sym_AMP_EQ] = ACTIONS(6346), + [anon_sym_CARET_EQ] = ACTIONS(6346), + [anon_sym_PIPE_EQ] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6349), + [anon_sym_PIPE_PIPE] = ACTIONS(6352), + [anon_sym_AMP_AMP] = ACTIONS(6352), + [anon_sym_PIPE] = ACTIONS(6349), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_EQ_EQ] = ACTIONS(6355), + [anon_sym_BANG_EQ] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6358), + [anon_sym_GT] = ACTIONS(6358), + [anon_sym_LT_EQ] = ACTIONS(6361), + [anon_sym_GT_EQ] = ACTIONS(6361), + [anon_sym_LT_LT] = ACTIONS(6364), + [anon_sym_GT_GT] = ACTIONS(6364), + [anon_sym_PLUS] = ACTIONS(6337), + [anon_sym_DASH] = ACTIONS(6337), + [anon_sym_SLASH] = ACTIONS(6337), + [anon_sym_PERCENT] = ACTIONS(6337), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_DASH_GT] = ACTIONS(4824), [sym_comment] = ACTIONS(123), }, - [1443] = { + [1449] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4827), [anon_sym_COMMA] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(560), [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_LBRACK] = ACTIONS(4816), - [anon_sym_EQ] = ACTIONS(6346), - [anon_sym_QMARK] = ACTIONS(6349), - [anon_sym_STAR_EQ] = ACTIONS(6352), - [anon_sym_SLASH_EQ] = ACTIONS(6352), - [anon_sym_PERCENT_EQ] = ACTIONS(6352), - [anon_sym_PLUS_EQ] = ACTIONS(6352), - [anon_sym_DASH_EQ] = ACTIONS(6352), - [anon_sym_LT_LT_EQ] = ACTIONS(6352), - [anon_sym_GT_GT_EQ] = ACTIONS(6352), - [anon_sym_AMP_EQ] = ACTIONS(6352), - [anon_sym_CARET_EQ] = ACTIONS(6352), - [anon_sym_PIPE_EQ] = ACTIONS(6352), - [anon_sym_AMP] = ACTIONS(6355), - [anon_sym_PIPE_PIPE] = ACTIONS(6358), - [anon_sym_AMP_AMP] = ACTIONS(6358), - [anon_sym_PIPE] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_EQ_EQ] = ACTIONS(6361), - [anon_sym_BANG_EQ] = ACTIONS(6361), - [anon_sym_LT] = ACTIONS(6364), - [anon_sym_GT] = ACTIONS(6364), - [anon_sym_LT_EQ] = ACTIONS(6367), - [anon_sym_GT_EQ] = ACTIONS(6367), - [anon_sym_LT_LT] = ACTIONS(6370), - [anon_sym_GT_GT] = ACTIONS(6370), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_PERCENT] = ACTIONS(6343), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(6367), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_QMARK] = ACTIONS(6373), + [anon_sym_STAR_EQ] = ACTIONS(6376), + [anon_sym_SLASH_EQ] = ACTIONS(6376), + [anon_sym_PERCENT_EQ] = ACTIONS(6376), + [anon_sym_PLUS_EQ] = ACTIONS(6376), + [anon_sym_DASH_EQ] = ACTIONS(6376), + [anon_sym_LT_LT_EQ] = ACTIONS(6376), + [anon_sym_GT_GT_EQ] = ACTIONS(6376), + [anon_sym_AMP_EQ] = ACTIONS(6376), + [anon_sym_CARET_EQ] = ACTIONS(6376), + [anon_sym_PIPE_EQ] = ACTIONS(6376), + [anon_sym_AMP] = ACTIONS(6379), + [anon_sym_PIPE_PIPE] = ACTIONS(6382), + [anon_sym_AMP_AMP] = ACTIONS(6382), + [anon_sym_PIPE] = ACTIONS(6379), + [anon_sym_CARET] = ACTIONS(6379), + [anon_sym_EQ_EQ] = ACTIONS(6385), + [anon_sym_BANG_EQ] = ACTIONS(6385), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_LT_EQ] = ACTIONS(6391), + [anon_sym_GT_EQ] = ACTIONS(6391), + [anon_sym_LT_LT] = ACTIONS(6394), + [anon_sym_GT_GT] = ACTIONS(6394), + [anon_sym_PLUS] = ACTIONS(6367), + [anon_sym_DASH] = ACTIONS(6367), + [anon_sym_SLASH] = ACTIONS(6367), + [anon_sym_PERCENT] = ACTIONS(6367), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_PLUS_PLUS] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_DASH_GT] = ACTIONS(4866), [sym_comment] = ACTIONS(123), }, - [1444] = { + [1450] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4869), [anon_sym_COMMA] = ACTIONS(564), [anon_sym_SEMI] = ACTIONS(564), [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_EQ] = ACTIONS(6376), - [anon_sym_QMARK] = ACTIONS(6379), - [anon_sym_STAR_EQ] = ACTIONS(6382), - [anon_sym_SLASH_EQ] = ACTIONS(6382), - [anon_sym_PERCENT_EQ] = ACTIONS(6382), - [anon_sym_PLUS_EQ] = ACTIONS(6382), - [anon_sym_DASH_EQ] = ACTIONS(6382), - [anon_sym_LT_LT_EQ] = ACTIONS(6382), - [anon_sym_GT_GT_EQ] = ACTIONS(6382), - [anon_sym_AMP_EQ] = ACTIONS(6382), - [anon_sym_CARET_EQ] = ACTIONS(6382), - [anon_sym_PIPE_EQ] = ACTIONS(6382), - [anon_sym_AMP] = ACTIONS(6385), - [anon_sym_PIPE_PIPE] = ACTIONS(6388), - [anon_sym_AMP_AMP] = ACTIONS(6388), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_CARET] = ACTIONS(6385), - [anon_sym_EQ_EQ] = ACTIONS(6391), - [anon_sym_BANG_EQ] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6394), - [anon_sym_LT_EQ] = ACTIONS(6397), - [anon_sym_GT_EQ] = ACTIONS(6397), - [anon_sym_LT_LT] = ACTIONS(6400), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_PLUS] = ACTIONS(6373), - [anon_sym_DASH] = ACTIONS(6373), - [anon_sym_SLASH] = ACTIONS(6373), - [anon_sym_PERCENT] = ACTIONS(6373), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DASH_GT] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_STAR_EQ] = ACTIONS(6406), + [anon_sym_SLASH_EQ] = ACTIONS(6406), + [anon_sym_PERCENT_EQ] = ACTIONS(6406), + [anon_sym_PLUS_EQ] = ACTIONS(6406), + [anon_sym_DASH_EQ] = ACTIONS(6406), + [anon_sym_LT_LT_EQ] = ACTIONS(6406), + [anon_sym_GT_GT_EQ] = ACTIONS(6406), + [anon_sym_AMP_EQ] = ACTIONS(6406), + [anon_sym_CARET_EQ] = ACTIONS(6406), + [anon_sym_PIPE_EQ] = ACTIONS(6406), + [anon_sym_AMP] = ACTIONS(6409), + [anon_sym_PIPE_PIPE] = ACTIONS(6412), + [anon_sym_AMP_AMP] = ACTIONS(6412), + [anon_sym_PIPE] = ACTIONS(6409), + [anon_sym_CARET] = ACTIONS(6409), + [anon_sym_EQ_EQ] = ACTIONS(6415), + [anon_sym_BANG_EQ] = ACTIONS(6415), + [anon_sym_LT] = ACTIONS(6418), + [anon_sym_GT] = ACTIONS(6418), + [anon_sym_LT_EQ] = ACTIONS(6421), + [anon_sym_GT_EQ] = ACTIONS(6421), + [anon_sym_LT_LT] = ACTIONS(6424), + [anon_sym_GT_GT] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_DASH_DASH] = ACTIONS(4905), + [anon_sym_PLUS_PLUS] = ACTIONS(4905), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4908), [sym_comment] = ACTIONS(123), }, - [1445] = { + [1451] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(6403), + [anon_sym_COLON] = ACTIONS(6427), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -67199,8 +67420,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1446] = { - [sym__expression] = STATE(1447), + [1452] = { + [sym__expression] = STATE(1453), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -67218,66 +67439,66 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1447] = { + [1453] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4913), [anon_sym_COMMA] = ACTIONS(600), [anon_sym_SEMI] = ACTIONS(600), [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(6408), - [anon_sym_QMARK] = ACTIONS(6411), - [anon_sym_STAR_EQ] = ACTIONS(6414), - [anon_sym_SLASH_EQ] = ACTIONS(6414), - [anon_sym_PERCENT_EQ] = ACTIONS(6414), - [anon_sym_PLUS_EQ] = ACTIONS(6414), - [anon_sym_DASH_EQ] = ACTIONS(6414), - [anon_sym_LT_LT_EQ] = ACTIONS(6414), - [anon_sym_GT_GT_EQ] = ACTIONS(6414), - [anon_sym_AMP_EQ] = ACTIONS(6414), - [anon_sym_CARET_EQ] = ACTIONS(6414), - [anon_sym_PIPE_EQ] = ACTIONS(6414), - [anon_sym_AMP] = ACTIONS(6417), - [anon_sym_PIPE_PIPE] = ACTIONS(6420), - [anon_sym_AMP_AMP] = ACTIONS(6420), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_CARET] = ACTIONS(6417), - [anon_sym_EQ_EQ] = ACTIONS(6423), - [anon_sym_BANG_EQ] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6426), - [anon_sym_GT] = ACTIONS(6426), - [anon_sym_LT_EQ] = ACTIONS(6429), - [anon_sym_GT_EQ] = ACTIONS(6429), - [anon_sym_LT_LT] = ACTIONS(6432), - [anon_sym_GT_GT] = ACTIONS(6432), - [anon_sym_PLUS] = ACTIONS(6405), - [anon_sym_DASH] = ACTIONS(6405), - [anon_sym_SLASH] = ACTIONS(6405), - [anon_sym_PERCENT] = ACTIONS(6405), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_DASH_GT] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(6429), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(6432), + [anon_sym_QMARK] = ACTIONS(6435), + [anon_sym_STAR_EQ] = ACTIONS(6438), + [anon_sym_SLASH_EQ] = ACTIONS(6438), + [anon_sym_PERCENT_EQ] = ACTIONS(6438), + [anon_sym_PLUS_EQ] = ACTIONS(6438), + [anon_sym_DASH_EQ] = ACTIONS(6438), + [anon_sym_LT_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_GT_EQ] = ACTIONS(6438), + [anon_sym_AMP_EQ] = ACTIONS(6438), + [anon_sym_CARET_EQ] = ACTIONS(6438), + [anon_sym_PIPE_EQ] = ACTIONS(6438), + [anon_sym_AMP] = ACTIONS(6441), + [anon_sym_PIPE_PIPE] = ACTIONS(6444), + [anon_sym_AMP_AMP] = ACTIONS(6444), + [anon_sym_PIPE] = ACTIONS(6441), + [anon_sym_CARET] = ACTIONS(6441), + [anon_sym_EQ_EQ] = ACTIONS(6447), + [anon_sym_BANG_EQ] = ACTIONS(6447), + [anon_sym_LT] = ACTIONS(6450), + [anon_sym_GT] = ACTIONS(6450), + [anon_sym_LT_EQ] = ACTIONS(6453), + [anon_sym_GT_EQ] = ACTIONS(6453), + [anon_sym_LT_LT] = ACTIONS(6456), + [anon_sym_GT_GT] = ACTIONS(6456), + [anon_sym_PLUS] = ACTIONS(6429), + [anon_sym_DASH] = ACTIONS(6429), + [anon_sym_SLASH] = ACTIONS(6429), + [anon_sym_PERCENT] = ACTIONS(6429), + [anon_sym_DASH_DASH] = ACTIONS(4949), + [anon_sym_PLUS_PLUS] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), [sym_comment] = ACTIONS(123), }, - [1448] = { + [1454] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -67302,7 +67523,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1450), + [sym_type_name] = STATE(1456), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -67332,55 +67553,55 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1449] = { + [1455] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4968), [anon_sym_COMMA] = ACTIONS(710), [anon_sym_SEMI] = ACTIONS(710), [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(6438), - [anon_sym_QMARK] = ACTIONS(6441), - [anon_sym_STAR_EQ] = ACTIONS(6444), - [anon_sym_SLASH_EQ] = ACTIONS(6444), - [anon_sym_PERCENT_EQ] = ACTIONS(6444), - [anon_sym_PLUS_EQ] = ACTIONS(6444), - [anon_sym_DASH_EQ] = ACTIONS(6444), - [anon_sym_LT_LT_EQ] = ACTIONS(6444), - [anon_sym_GT_GT_EQ] = ACTIONS(6444), - [anon_sym_AMP_EQ] = ACTIONS(6444), - [anon_sym_CARET_EQ] = ACTIONS(6444), - [anon_sym_PIPE_EQ] = ACTIONS(6444), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_PIPE_PIPE] = ACTIONS(6450), - [anon_sym_AMP_AMP] = ACTIONS(6450), - [anon_sym_PIPE] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_EQ_EQ] = ACTIONS(6453), - [anon_sym_BANG_EQ] = ACTIONS(6453), - [anon_sym_LT] = ACTIONS(6456), - [anon_sym_GT] = ACTIONS(6456), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_LT] = ACTIONS(6462), - [anon_sym_GT_GT] = ACTIONS(6462), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_PERCENT] = ACTIONS(6435), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(6459), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(6462), + [anon_sym_QMARK] = ACTIONS(6465), + [anon_sym_STAR_EQ] = ACTIONS(6468), + [anon_sym_SLASH_EQ] = ACTIONS(6468), + [anon_sym_PERCENT_EQ] = ACTIONS(6468), + [anon_sym_PLUS_EQ] = ACTIONS(6468), + [anon_sym_DASH_EQ] = ACTIONS(6468), + [anon_sym_LT_LT_EQ] = ACTIONS(6468), + [anon_sym_GT_GT_EQ] = ACTIONS(6468), + [anon_sym_AMP_EQ] = ACTIONS(6468), + [anon_sym_CARET_EQ] = ACTIONS(6468), + [anon_sym_PIPE_EQ] = ACTIONS(6468), + [anon_sym_AMP] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6474), + [anon_sym_AMP_AMP] = ACTIONS(6474), + [anon_sym_PIPE] = ACTIONS(6471), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_EQ_EQ] = ACTIONS(6477), + [anon_sym_BANG_EQ] = ACTIONS(6477), + [anon_sym_LT] = ACTIONS(6480), + [anon_sym_GT] = ACTIONS(6480), + [anon_sym_LT_EQ] = ACTIONS(6483), + [anon_sym_GT_EQ] = ACTIONS(6483), + [anon_sym_LT_LT] = ACTIONS(6486), + [anon_sym_GT_GT] = ACTIONS(6486), + [anon_sym_PLUS] = ACTIONS(6459), + [anon_sym_DASH] = ACTIONS(6459), + [anon_sym_SLASH] = ACTIONS(6459), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), [sym_comment] = ACTIONS(123), }, - [1450] = { - [anon_sym_RPAREN] = ACTIONS(6465), + [1456] = { + [anon_sym_RPAREN] = ACTIONS(6489), [sym_comment] = ACTIONS(123), }, - [1451] = { - [sym__expression] = STATE(1452), + [1457] = { + [sym__expression] = STATE(1458), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -67397,331 +67618,331 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(6470), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(6470), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(6478), - [anon_sym_PLUS_PLUS] = ACTIONS(6478), - [anon_sym_sizeof] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(6491), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(6494), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(6494), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(6497), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(6499), + [anon_sym_DASH] = ACTIONS(6499), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(6502), + [anon_sym_PLUS_PLUS] = ACTIONS(6502), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1452] = { + [1458] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(6484), - [anon_sym_QMARK] = ACTIONS(6487), - [anon_sym_STAR_EQ] = ACTIONS(6490), - [anon_sym_SLASH_EQ] = ACTIONS(6490), - [anon_sym_PERCENT_EQ] = ACTIONS(6490), - [anon_sym_PLUS_EQ] = ACTIONS(6490), - [anon_sym_DASH_EQ] = ACTIONS(6490), - [anon_sym_LT_LT_EQ] = ACTIONS(6490), - [anon_sym_GT_GT_EQ] = ACTIONS(6490), - [anon_sym_AMP_EQ] = ACTIONS(6490), - [anon_sym_CARET_EQ] = ACTIONS(6490), - [anon_sym_PIPE_EQ] = ACTIONS(6490), - [anon_sym_AMP] = ACTIONS(6493), - [anon_sym_PIPE_PIPE] = ACTIONS(6496), - [anon_sym_AMP_AMP] = ACTIONS(6496), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_CARET] = ACTIONS(6493), - [anon_sym_EQ_EQ] = ACTIONS(6499), - [anon_sym_BANG_EQ] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6502), - [anon_sym_GT] = ACTIONS(6502), - [anon_sym_LT_EQ] = ACTIONS(6505), - [anon_sym_GT_EQ] = ACTIONS(6505), - [anon_sym_LT_LT] = ACTIONS(6508), - [anon_sym_GT_GT] = ACTIONS(6508), - [anon_sym_PLUS] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6481), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_DASH_GT] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(6508), + [anon_sym_QMARK] = ACTIONS(6511), + [anon_sym_STAR_EQ] = ACTIONS(6514), + [anon_sym_SLASH_EQ] = ACTIONS(6514), + [anon_sym_PERCENT_EQ] = ACTIONS(6514), + [anon_sym_PLUS_EQ] = ACTIONS(6514), + [anon_sym_DASH_EQ] = ACTIONS(6514), + [anon_sym_LT_LT_EQ] = ACTIONS(6514), + [anon_sym_GT_GT_EQ] = ACTIONS(6514), + [anon_sym_AMP_EQ] = ACTIONS(6514), + [anon_sym_CARET_EQ] = ACTIONS(6514), + [anon_sym_PIPE_EQ] = ACTIONS(6514), + [anon_sym_AMP] = ACTIONS(6517), + [anon_sym_PIPE_PIPE] = ACTIONS(6520), + [anon_sym_AMP_AMP] = ACTIONS(6520), + [anon_sym_PIPE] = ACTIONS(6517), + [anon_sym_CARET] = ACTIONS(6517), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_LT] = ACTIONS(6526), + [anon_sym_GT] = ACTIONS(6526), + [anon_sym_LT_EQ] = ACTIONS(6529), + [anon_sym_GT_EQ] = ACTIONS(6529), + [anon_sym_LT_LT] = ACTIONS(6532), + [anon_sym_GT_GT] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6505), + [anon_sym_DASH] = ACTIONS(6505), + [anon_sym_SLASH] = ACTIONS(6505), + [anon_sym_PERCENT] = ACTIONS(6505), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_DASH_GT] = ACTIONS(5065), [sym_comment] = ACTIONS(123), }, - [1453] = { + [1459] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(6514), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_STAR_EQ] = ACTIONS(6520), - [anon_sym_SLASH_EQ] = ACTIONS(6520), - [anon_sym_PERCENT_EQ] = ACTIONS(6520), - [anon_sym_PLUS_EQ] = ACTIONS(6520), - [anon_sym_DASH_EQ] = ACTIONS(6520), - [anon_sym_LT_LT_EQ] = ACTIONS(6520), - [anon_sym_GT_GT_EQ] = ACTIONS(6520), - [anon_sym_AMP_EQ] = ACTIONS(6520), - [anon_sym_CARET_EQ] = ACTIONS(6520), - [anon_sym_PIPE_EQ] = ACTIONS(6520), - [anon_sym_AMP] = ACTIONS(6523), - [anon_sym_PIPE_PIPE] = ACTIONS(6526), - [anon_sym_AMP_AMP] = ACTIONS(6526), - [anon_sym_PIPE] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_EQ_EQ] = ACTIONS(6529), - [anon_sym_BANG_EQ] = ACTIONS(6529), - [anon_sym_LT] = ACTIONS(6532), - [anon_sym_GT] = ACTIONS(6532), - [anon_sym_LT_EQ] = ACTIONS(6535), - [anon_sym_GT_EQ] = ACTIONS(6535), - [anon_sym_LT_LT] = ACTIONS(6538), - [anon_sym_GT_GT] = ACTIONS(6538), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_PERCENT] = ACTIONS(6511), - [anon_sym_DASH_DASH] = ACTIONS(5087), - [anon_sym_PLUS_PLUS] = ACTIONS(5087), - [anon_sym_DOT] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(6535), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(6538), + [anon_sym_QMARK] = ACTIONS(6541), + [anon_sym_STAR_EQ] = ACTIONS(6544), + [anon_sym_SLASH_EQ] = ACTIONS(6544), + [anon_sym_PERCENT_EQ] = ACTIONS(6544), + [anon_sym_PLUS_EQ] = ACTIONS(6544), + [anon_sym_DASH_EQ] = ACTIONS(6544), + [anon_sym_LT_LT_EQ] = ACTIONS(6544), + [anon_sym_GT_GT_EQ] = ACTIONS(6544), + [anon_sym_AMP_EQ] = ACTIONS(6544), + [anon_sym_CARET_EQ] = ACTIONS(6544), + [anon_sym_PIPE_EQ] = ACTIONS(6544), + [anon_sym_AMP] = ACTIONS(6547), + [anon_sym_PIPE_PIPE] = ACTIONS(6550), + [anon_sym_AMP_AMP] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6547), + [anon_sym_CARET] = ACTIONS(6547), + [anon_sym_EQ_EQ] = ACTIONS(6553), + [anon_sym_BANG_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6556), + [anon_sym_GT] = ACTIONS(6556), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6559), + [anon_sym_LT_LT] = ACTIONS(6562), + [anon_sym_GT_GT] = ACTIONS(6562), + [anon_sym_PLUS] = ACTIONS(6535), + [anon_sym_DASH] = ACTIONS(6535), + [anon_sym_SLASH] = ACTIONS(6535), + [anon_sym_PERCENT] = ACTIONS(6535), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_DASH_GT] = ACTIONS(5107), [sym_comment] = ACTIONS(123), }, - [1454] = { + [1460] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(6541), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(6544), - [anon_sym_QMARK] = ACTIONS(6547), - [anon_sym_STAR_EQ] = ACTIONS(6550), - [anon_sym_SLASH_EQ] = ACTIONS(6550), - [anon_sym_PERCENT_EQ] = ACTIONS(6550), - [anon_sym_PLUS_EQ] = ACTIONS(6550), - [anon_sym_DASH_EQ] = ACTIONS(6550), - [anon_sym_LT_LT_EQ] = ACTIONS(6550), - [anon_sym_GT_GT_EQ] = ACTIONS(6550), - [anon_sym_AMP_EQ] = ACTIONS(6550), - [anon_sym_CARET_EQ] = ACTIONS(6550), - [anon_sym_PIPE_EQ] = ACTIONS(6550), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_PIPE_PIPE] = ACTIONS(6556), - [anon_sym_AMP_AMP] = ACTIONS(6556), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6559), - [anon_sym_BANG_EQ] = ACTIONS(6559), - [anon_sym_LT] = ACTIONS(6562), - [anon_sym_GT] = ACTIONS(6562), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6565), - [anon_sym_LT_LT] = ACTIONS(6568), - [anon_sym_GT_GT] = ACTIONS(6568), - [anon_sym_PLUS] = ACTIONS(6541), - [anon_sym_DASH] = ACTIONS(6541), - [anon_sym_SLASH] = ACTIONS(6541), - [anon_sym_PERCENT] = ACTIONS(6541), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_PLUS_PLUS] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_QMARK] = ACTIONS(6571), + [anon_sym_STAR_EQ] = ACTIONS(6574), + [anon_sym_SLASH_EQ] = ACTIONS(6574), + [anon_sym_PERCENT_EQ] = ACTIONS(6574), + [anon_sym_PLUS_EQ] = ACTIONS(6574), + [anon_sym_DASH_EQ] = ACTIONS(6574), + [anon_sym_LT_LT_EQ] = ACTIONS(6574), + [anon_sym_GT_GT_EQ] = ACTIONS(6574), + [anon_sym_AMP_EQ] = ACTIONS(6574), + [anon_sym_CARET_EQ] = ACTIONS(6574), + [anon_sym_PIPE_EQ] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6577), + [anon_sym_PIPE_PIPE] = ACTIONS(6580), + [anon_sym_AMP_AMP] = ACTIONS(6580), + [anon_sym_PIPE] = ACTIONS(6577), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6583), + [anon_sym_BANG_EQ] = ACTIONS(6583), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_LT_EQ] = ACTIONS(6589), + [anon_sym_GT_EQ] = ACTIONS(6589), + [anon_sym_LT_LT] = ACTIONS(6592), + [anon_sym_GT_GT] = ACTIONS(6592), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6565), + [anon_sym_DASH_DASH] = ACTIONS(5146), + [anon_sym_PLUS_PLUS] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), [sym_comment] = ACTIONS(123), }, - [1455] = { + [1461] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(6571), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_QMARK] = ACTIONS(6577), - [anon_sym_STAR_EQ] = ACTIONS(6580), - [anon_sym_SLASH_EQ] = ACTIONS(6580), - [anon_sym_PERCENT_EQ] = ACTIONS(6580), - [anon_sym_PLUS_EQ] = ACTIONS(6580), - [anon_sym_DASH_EQ] = ACTIONS(6580), - [anon_sym_LT_LT_EQ] = ACTIONS(6580), - [anon_sym_GT_GT_EQ] = ACTIONS(6580), - [anon_sym_AMP_EQ] = ACTIONS(6580), - [anon_sym_CARET_EQ] = ACTIONS(6580), - [anon_sym_PIPE_EQ] = ACTIONS(6580), - [anon_sym_AMP] = ACTIONS(6583), - [anon_sym_PIPE_PIPE] = ACTIONS(6586), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE] = ACTIONS(6583), - [anon_sym_CARET] = ACTIONS(6583), - [anon_sym_EQ_EQ] = ACTIONS(6589), - [anon_sym_BANG_EQ] = ACTIONS(6589), - [anon_sym_LT] = ACTIONS(6592), - [anon_sym_GT] = ACTIONS(6592), - [anon_sym_LT_EQ] = ACTIONS(6595), - [anon_sym_GT_EQ] = ACTIONS(6595), - [anon_sym_LT_LT] = ACTIONS(6598), - [anon_sym_GT_GT] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6571), - [anon_sym_DASH] = ACTIONS(6571), - [anon_sym_SLASH] = ACTIONS(6571), - [anon_sym_PERCENT] = ACTIONS(6571), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_DASH_GT] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(6595), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(6598), + [anon_sym_QMARK] = ACTIONS(6601), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(6607), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6607), + [anon_sym_CARET] = ACTIONS(6607), + [anon_sym_EQ_EQ] = ACTIONS(6613), + [anon_sym_BANG_EQ] = ACTIONS(6613), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6619), + [anon_sym_GT_EQ] = ACTIONS(6619), + [anon_sym_LT_LT] = ACTIONS(6622), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_PLUS] = ACTIONS(6595), + [anon_sym_DASH] = ACTIONS(6595), + [anon_sym_SLASH] = ACTIONS(6595), + [anon_sym_PERCENT] = ACTIONS(6595), + [anon_sym_DASH_DASH] = ACTIONS(5188), + [anon_sym_PLUS_PLUS] = ACTIONS(5188), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5191), [sym_comment] = ACTIONS(123), }, - [1456] = { + [1462] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(6604), - [anon_sym_QMARK] = ACTIONS(6607), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_AMP] = ACTIONS(6613), - [anon_sym_PIPE_PIPE] = ACTIONS(6616), - [anon_sym_AMP_AMP] = ACTIONS(6616), - [anon_sym_PIPE] = ACTIONS(6613), - [anon_sym_CARET] = ACTIONS(6613), - [anon_sym_EQ_EQ] = ACTIONS(6619), - [anon_sym_BANG_EQ] = ACTIONS(6619), - [anon_sym_LT] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6625), - [anon_sym_GT_EQ] = ACTIONS(6625), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6601), - [anon_sym_SLASH] = ACTIONS(6601), - [anon_sym_PERCENT] = ACTIONS(6601), - [anon_sym_DASH_DASH] = ACTIONS(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5213), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(6625), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6631), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_AMP] = ACTIONS(6637), + [anon_sym_PIPE_PIPE] = ACTIONS(6640), + [anon_sym_AMP_AMP] = ACTIONS(6640), + [anon_sym_PIPE] = ACTIONS(6637), + [anon_sym_CARET] = ACTIONS(6637), + [anon_sym_EQ_EQ] = ACTIONS(6643), + [anon_sym_BANG_EQ] = ACTIONS(6643), + [anon_sym_LT] = ACTIONS(6646), + [anon_sym_GT] = ACTIONS(6646), + [anon_sym_LT_EQ] = ACTIONS(6649), + [anon_sym_GT_EQ] = ACTIONS(6649), + [anon_sym_LT_LT] = ACTIONS(6652), + [anon_sym_GT_GT] = ACTIONS(6652), + [anon_sym_PLUS] = ACTIONS(6625), + [anon_sym_DASH] = ACTIONS(6625), + [anon_sym_SLASH] = ACTIONS(6625), + [anon_sym_PERCENT] = ACTIONS(6625), + [anon_sym_DASH_DASH] = ACTIONS(5230), + [anon_sym_PLUS_PLUS] = ACTIONS(5230), + [anon_sym_DOT] = ACTIONS(5233), + [anon_sym_DASH_GT] = ACTIONS(5233), [sym_comment] = ACTIONS(123), }, - [1457] = { - [anon_sym_POUNDinclude] = ACTIONS(1605), - [anon_sym_POUNDdefine] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_POUNDif] = ACTIONS(1605), - [anon_sym_POUNDifdef] = ACTIONS(1605), - [anon_sym_POUNDifndef] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(6631), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_auto] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [sym_function_specifier] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [sym_string_literal] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1607), + [1463] = { + [anon_sym_POUNDinclude] = ACTIONS(1620), + [anon_sym_POUNDdefine] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_POUNDif] = ACTIONS(1620), + [anon_sym_POUNDifdef] = ACTIONS(1620), + [anon_sym_POUNDifndef] = ACTIONS(1620), + [sym_preproc_directive] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(6655), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1620), + [anon_sym_typedef] = ACTIONS(1620), + [anon_sym_auto] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1620), + [anon_sym_restrict] = ACTIONS(1620), + [anon_sym_volatile] = ACTIONS(1620), + [sym_function_specifier] = ACTIONS(1620), + [anon_sym_unsigned] = ACTIONS(1620), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_short] = ACTIONS(1620), + [anon_sym_enum] = ACTIONS(1620), + [anon_sym_struct] = ACTIONS(1620), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_switch] = ACTIONS(1620), + [anon_sym_case] = ACTIONS(1620), + [anon_sym_default] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_do] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_return] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_goto] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_sizeof] = ACTIONS(1620), + [sym_number_literal] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [sym_string_literal] = ACTIONS(1618), + [sym_identifier] = ACTIONS(1622), [sym_comment] = ACTIONS(123), }, - [1458] = { - [anon_sym_RPAREN] = ACTIONS(6634), + [1464] = { + [anon_sym_RPAREN] = ACTIONS(6658), [sym_comment] = ACTIONS(123), }, - [1459] = { - [sym__expression] = STATE(1452), + [1465] = { + [sym__expression] = STATE(1458), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -67738,28 +67959,28 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1460] = { + [1466] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1473), + [sym__statement] = STATE(1479), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -67795,13 +68016,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -67817,11 +68038,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1461] = { - [sym__expression] = STATE(1470), + [1467] = { + [sym__expression] = STATE(1476), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -67840,7 +68061,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(6636), + [anon_sym_RPAREN] = ACTIONS(6660), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -67856,53 +68077,53 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1462] = { + [1468] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1465), + [aux_sym_for_statement_repeat1] = STATE(1471), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(6638), - [anon_sym_SEMI] = ACTIONS(6640), - [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(6662), + [anon_sym_SEMI] = ACTIONS(6664), + [anon_sym_STAR] = ACTIONS(4584), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(4569), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_LT_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_GT_EQ] = ACTIONS(4573), - [anon_sym_AMP_EQ] = ACTIONS(4573), - [anon_sym_CARET_EQ] = ACTIONS(4573), - [anon_sym_PIPE_EQ] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_PIPE_PIPE] = ACTIONS(4577), - [anon_sym_AMP_AMP] = ACTIONS(4577), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(4575), - [anon_sym_EQ_EQ] = ACTIONS(4579), - [anon_sym_BANG_EQ] = ACTIONS(4579), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4581), - [anon_sym_LT_EQ] = ACTIONS(4583), - [anon_sym_GT_EQ] = ACTIONS(4583), - [anon_sym_LT_LT] = ACTIONS(4585), - [anon_sym_GT_GT] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4590), + [anon_sym_SLASH_EQ] = ACTIONS(4590), + [anon_sym_PERCENT_EQ] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4590), + [anon_sym_DASH_EQ] = ACTIONS(4590), + [anon_sym_LT_LT_EQ] = ACTIONS(4590), + [anon_sym_GT_GT_EQ] = ACTIONS(4590), + [anon_sym_AMP_EQ] = ACTIONS(4590), + [anon_sym_CARET_EQ] = ACTIONS(4590), + [anon_sym_PIPE_EQ] = ACTIONS(4590), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_PIPE_PIPE] = ACTIONS(4594), + [anon_sym_AMP_AMP] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1463] = { + [1469] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1468), + [sym__statement] = STATE(1474), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -67938,13 +68159,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -67960,11 +68181,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1464] = { - [sym__expression] = STATE(1467), + [1470] = { + [sym__expression] = STATE(1473), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -67983,7 +68204,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4428), [anon_sym_STAR] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), @@ -67999,14 +68220,14 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1465] = { + [1471] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(6642), + [anon_sym_RPAREN] = ACTIONS(6666), [sym_comment] = ACTIONS(123), }, - [1466] = { + [1472] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1174), + [sym__statement] = STATE(1178), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -68042,13 +68263,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -68064,15 +68285,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1467] = { + [1473] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1279), + [aux_sym_for_statement_repeat1] = STATE(1283), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_RPAREN] = ACTIONS(4580), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -68110,65 +68331,65 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1468] = { - [ts_builtin_sym_end] = ACTIONS(6644), - [anon_sym_POUNDinclude] = ACTIONS(6648), - [anon_sym_POUNDdefine] = ACTIONS(6648), - [anon_sym_LPAREN] = ACTIONS(6644), - [anon_sym_POUNDif] = ACTIONS(6648), - [anon_sym_POUNDendif] = ACTIONS(6648), - [anon_sym_POUNDifdef] = ACTIONS(6648), - [anon_sym_POUNDifndef] = ACTIONS(6648), - [anon_sym_POUNDelse] = ACTIONS(6648), - [sym_preproc_directive] = ACTIONS(6652), - [anon_sym_SEMI] = ACTIONS(6644), - [anon_sym_extern] = ACTIONS(6648), - [anon_sym_LBRACE] = ACTIONS(6644), - [anon_sym_RBRACE] = ACTIONS(6644), - [anon_sym_STAR] = ACTIONS(6644), - [anon_sym_static] = ACTIONS(6648), - [anon_sym_typedef] = ACTIONS(6648), - [anon_sym_auto] = ACTIONS(6648), - [anon_sym_register] = ACTIONS(6648), - [anon_sym_const] = ACTIONS(6648), - [anon_sym_restrict] = ACTIONS(6648), - [anon_sym_volatile] = ACTIONS(6648), - [sym_function_specifier] = ACTIONS(6648), - [anon_sym_unsigned] = ACTIONS(6648), - [anon_sym_long] = ACTIONS(6648), - [anon_sym_short] = ACTIONS(6648), - [anon_sym_enum] = ACTIONS(6648), - [anon_sym_struct] = ACTIONS(6648), - [anon_sym_union] = ACTIONS(6648), - [anon_sym_if] = ACTIONS(6648), - [anon_sym_else] = ACTIONS(6648), - [anon_sym_switch] = ACTIONS(6648), - [anon_sym_case] = ACTIONS(6648), - [anon_sym_default] = ACTIONS(6648), - [anon_sym_while] = ACTIONS(6648), - [anon_sym_do] = ACTIONS(6648), - [anon_sym_for] = ACTIONS(6648), - [anon_sym_return] = ACTIONS(6648), - [anon_sym_break] = ACTIONS(6648), - [anon_sym_continue] = ACTIONS(6648), - [anon_sym_goto] = ACTIONS(6648), - [anon_sym_AMP] = ACTIONS(6644), - [anon_sym_BANG] = ACTIONS(6644), - [anon_sym_TILDE] = ACTIONS(6644), - [anon_sym_PLUS] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6648), - [anon_sym_DASH_DASH] = ACTIONS(6644), - [anon_sym_PLUS_PLUS] = ACTIONS(6644), - [anon_sym_sizeof] = ACTIONS(6648), - [sym_number_literal] = ACTIONS(6648), - [sym_char_literal] = ACTIONS(6648), - [sym_string_literal] = ACTIONS(6644), - [sym_identifier] = ACTIONS(6652), + [1474] = { + [ts_builtin_sym_end] = ACTIONS(6668), + [anon_sym_POUNDinclude] = ACTIONS(6672), + [anon_sym_POUNDdefine] = ACTIONS(6672), + [anon_sym_LPAREN] = ACTIONS(6668), + [anon_sym_POUNDif] = ACTIONS(6672), + [anon_sym_POUNDendif] = ACTIONS(6672), + [anon_sym_POUNDifdef] = ACTIONS(6672), + [anon_sym_POUNDifndef] = ACTIONS(6672), + [anon_sym_POUNDelse] = ACTIONS(6672), + [sym_preproc_directive] = ACTIONS(6676), + [anon_sym_SEMI] = ACTIONS(6668), + [anon_sym_extern] = ACTIONS(6672), + [anon_sym_LBRACE] = ACTIONS(6668), + [anon_sym_RBRACE] = ACTIONS(6668), + [anon_sym_STAR] = ACTIONS(6668), + [anon_sym_static] = ACTIONS(6672), + [anon_sym_typedef] = ACTIONS(6672), + [anon_sym_auto] = ACTIONS(6672), + [anon_sym_register] = ACTIONS(6672), + [anon_sym_const] = ACTIONS(6672), + [anon_sym_restrict] = ACTIONS(6672), + [anon_sym_volatile] = ACTIONS(6672), + [sym_function_specifier] = ACTIONS(6672), + [anon_sym_unsigned] = ACTIONS(6672), + [anon_sym_long] = ACTIONS(6672), + [anon_sym_short] = ACTIONS(6672), + [anon_sym_enum] = ACTIONS(6672), + [anon_sym_struct] = ACTIONS(6672), + [anon_sym_union] = ACTIONS(6672), + [anon_sym_if] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(6672), + [anon_sym_switch] = ACTIONS(6672), + [anon_sym_case] = ACTIONS(6672), + [anon_sym_default] = ACTIONS(6672), + [anon_sym_while] = ACTIONS(6672), + [anon_sym_do] = ACTIONS(6672), + [anon_sym_for] = ACTIONS(6672), + [anon_sym_return] = ACTIONS(6672), + [anon_sym_break] = ACTIONS(6672), + [anon_sym_continue] = ACTIONS(6672), + [anon_sym_goto] = ACTIONS(6672), + [anon_sym_AMP] = ACTIONS(6668), + [anon_sym_BANG] = ACTIONS(6668), + [anon_sym_TILDE] = ACTIONS(6668), + [anon_sym_PLUS] = ACTIONS(6672), + [anon_sym_DASH] = ACTIONS(6672), + [anon_sym_DASH_DASH] = ACTIONS(6668), + [anon_sym_PLUS_PLUS] = ACTIONS(6668), + [anon_sym_sizeof] = ACTIONS(6672), + [sym_number_literal] = ACTIONS(6672), + [sym_char_literal] = ACTIONS(6672), + [sym_string_literal] = ACTIONS(6668), + [sym_identifier] = ACTIONS(6676), [sym_comment] = ACTIONS(123), }, - [1469] = { + [1475] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1472), + [sym__statement] = STATE(1478), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -68204,13 +68425,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(139), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(145), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_case] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3019), [anon_sym_do] = ACTIONS(171), - [anon_sym_for] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3021), [anon_sym_return] = ACTIONS(175), [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), @@ -68226,15 +68447,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(123), }, - [1470] = { + [1476] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(1471), + [aux_sym_for_statement_repeat1] = STATE(1477), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4428), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -68272,124 +68493,124 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1471] = { + [1477] = { [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_RPAREN] = ACTIONS(4580), [sym_comment] = ACTIONS(123), }, - [1472] = { - [ts_builtin_sym_end] = ACTIONS(6656), - [anon_sym_POUNDinclude] = ACTIONS(6659), - [anon_sym_POUNDdefine] = ACTIONS(6659), - [anon_sym_LPAREN] = ACTIONS(6656), - [anon_sym_POUNDif] = ACTIONS(6659), - [anon_sym_POUNDendif] = ACTIONS(6659), - [anon_sym_POUNDifdef] = ACTIONS(6659), - [anon_sym_POUNDifndef] = ACTIONS(6659), - [anon_sym_POUNDelse] = ACTIONS(6659), - [sym_preproc_directive] = ACTIONS(6662), - [anon_sym_SEMI] = ACTIONS(6656), - [anon_sym_extern] = ACTIONS(6659), - [anon_sym_LBRACE] = ACTIONS(6656), - [anon_sym_RBRACE] = ACTIONS(6656), - [anon_sym_STAR] = ACTIONS(6656), - [anon_sym_static] = ACTIONS(6659), - [anon_sym_typedef] = ACTIONS(6659), - [anon_sym_auto] = ACTIONS(6659), - [anon_sym_register] = ACTIONS(6659), - [anon_sym_const] = ACTIONS(6659), - [anon_sym_restrict] = ACTIONS(6659), - [anon_sym_volatile] = ACTIONS(6659), - [sym_function_specifier] = ACTIONS(6659), - [anon_sym_unsigned] = ACTIONS(6659), - [anon_sym_long] = ACTIONS(6659), - [anon_sym_short] = ACTIONS(6659), - [anon_sym_enum] = ACTIONS(6659), - [anon_sym_struct] = ACTIONS(6659), - [anon_sym_union] = ACTIONS(6659), - [anon_sym_if] = ACTIONS(6659), - [anon_sym_else] = ACTIONS(6659), - [anon_sym_switch] = ACTIONS(6659), - [anon_sym_case] = ACTIONS(6659), - [anon_sym_default] = ACTIONS(6659), - [anon_sym_while] = ACTIONS(6659), - [anon_sym_do] = ACTIONS(6659), - [anon_sym_for] = ACTIONS(6659), - [anon_sym_return] = ACTIONS(6659), - [anon_sym_break] = ACTIONS(6659), - [anon_sym_continue] = ACTIONS(6659), - [anon_sym_goto] = ACTIONS(6659), - [anon_sym_AMP] = ACTIONS(6656), - [anon_sym_BANG] = ACTIONS(6656), - [anon_sym_TILDE] = ACTIONS(6656), - [anon_sym_PLUS] = ACTIONS(6659), - [anon_sym_DASH] = ACTIONS(6659), - [anon_sym_DASH_DASH] = ACTIONS(6656), - [anon_sym_PLUS_PLUS] = ACTIONS(6656), - [anon_sym_sizeof] = ACTIONS(6659), - [sym_number_literal] = ACTIONS(6659), - [sym_char_literal] = ACTIONS(6659), - [sym_string_literal] = ACTIONS(6656), - [sym_identifier] = ACTIONS(6662), + [1478] = { + [ts_builtin_sym_end] = ACTIONS(6680), + [anon_sym_POUNDinclude] = ACTIONS(6683), + [anon_sym_POUNDdefine] = ACTIONS(6683), + [anon_sym_LPAREN] = ACTIONS(6680), + [anon_sym_POUNDif] = ACTIONS(6683), + [anon_sym_POUNDendif] = ACTIONS(6683), + [anon_sym_POUNDifdef] = ACTIONS(6683), + [anon_sym_POUNDifndef] = ACTIONS(6683), + [anon_sym_POUNDelse] = ACTIONS(6683), + [sym_preproc_directive] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6680), + [anon_sym_extern] = ACTIONS(6683), + [anon_sym_LBRACE] = ACTIONS(6680), + [anon_sym_RBRACE] = ACTIONS(6680), + [anon_sym_STAR] = ACTIONS(6680), + [anon_sym_static] = ACTIONS(6683), + [anon_sym_typedef] = ACTIONS(6683), + [anon_sym_auto] = ACTIONS(6683), + [anon_sym_register] = ACTIONS(6683), + [anon_sym_const] = ACTIONS(6683), + [anon_sym_restrict] = ACTIONS(6683), + [anon_sym_volatile] = ACTIONS(6683), + [sym_function_specifier] = ACTIONS(6683), + [anon_sym_unsigned] = ACTIONS(6683), + [anon_sym_long] = ACTIONS(6683), + [anon_sym_short] = ACTIONS(6683), + [anon_sym_enum] = ACTIONS(6683), + [anon_sym_struct] = ACTIONS(6683), + [anon_sym_union] = ACTIONS(6683), + [anon_sym_if] = ACTIONS(6683), + [anon_sym_else] = ACTIONS(6683), + [anon_sym_switch] = ACTIONS(6683), + [anon_sym_case] = ACTIONS(6683), + [anon_sym_default] = ACTIONS(6683), + [anon_sym_while] = ACTIONS(6683), + [anon_sym_do] = ACTIONS(6683), + [anon_sym_for] = ACTIONS(6683), + [anon_sym_return] = ACTIONS(6683), + [anon_sym_break] = ACTIONS(6683), + [anon_sym_continue] = ACTIONS(6683), + [anon_sym_goto] = ACTIONS(6683), + [anon_sym_AMP] = ACTIONS(6680), + [anon_sym_BANG] = ACTIONS(6680), + [anon_sym_TILDE] = ACTIONS(6680), + [anon_sym_PLUS] = ACTIONS(6683), + [anon_sym_DASH] = ACTIONS(6683), + [anon_sym_DASH_DASH] = ACTIONS(6680), + [anon_sym_PLUS_PLUS] = ACTIONS(6680), + [anon_sym_sizeof] = ACTIONS(6683), + [sym_number_literal] = ACTIONS(6683), + [sym_char_literal] = ACTIONS(6683), + [sym_string_literal] = ACTIONS(6680), + [sym_identifier] = ACTIONS(6686), [sym_comment] = ACTIONS(123), }, - [1473] = { - [ts_builtin_sym_end] = ACTIONS(6665), - [anon_sym_POUNDinclude] = ACTIONS(6669), - [anon_sym_POUNDdefine] = ACTIONS(6669), - [anon_sym_LPAREN] = ACTIONS(6665), - [anon_sym_POUNDif] = ACTIONS(6669), - [anon_sym_POUNDendif] = ACTIONS(6669), - [anon_sym_POUNDifdef] = ACTIONS(6669), - [anon_sym_POUNDifndef] = ACTIONS(6669), - [anon_sym_POUNDelse] = ACTIONS(6669), - [sym_preproc_directive] = ACTIONS(6673), - [anon_sym_SEMI] = ACTIONS(6665), - [anon_sym_extern] = ACTIONS(6669), - [anon_sym_LBRACE] = ACTIONS(6665), - [anon_sym_RBRACE] = ACTIONS(6665), - [anon_sym_STAR] = ACTIONS(6665), - [anon_sym_static] = ACTIONS(6669), - [anon_sym_typedef] = ACTIONS(6669), - [anon_sym_auto] = ACTIONS(6669), - [anon_sym_register] = ACTIONS(6669), - [anon_sym_const] = ACTIONS(6669), - [anon_sym_restrict] = ACTIONS(6669), - [anon_sym_volatile] = ACTIONS(6669), - [sym_function_specifier] = ACTIONS(6669), - [anon_sym_unsigned] = ACTIONS(6669), - [anon_sym_long] = ACTIONS(6669), - [anon_sym_short] = ACTIONS(6669), - [anon_sym_enum] = ACTIONS(6669), - [anon_sym_struct] = ACTIONS(6669), - [anon_sym_union] = ACTIONS(6669), - [anon_sym_if] = ACTIONS(6669), - [anon_sym_else] = ACTIONS(6669), - [anon_sym_switch] = ACTIONS(6669), - [anon_sym_case] = ACTIONS(6669), - [anon_sym_default] = ACTIONS(6669), - [anon_sym_while] = ACTIONS(6669), - [anon_sym_do] = ACTIONS(6669), - [anon_sym_for] = ACTIONS(6669), - [anon_sym_return] = ACTIONS(6669), - [anon_sym_break] = ACTIONS(6669), - [anon_sym_continue] = ACTIONS(6669), - [anon_sym_goto] = ACTIONS(6669), - [anon_sym_AMP] = ACTIONS(6665), - [anon_sym_BANG] = ACTIONS(6665), - [anon_sym_TILDE] = ACTIONS(6665), - [anon_sym_PLUS] = ACTIONS(6669), - [anon_sym_DASH] = ACTIONS(6669), - [anon_sym_DASH_DASH] = ACTIONS(6665), - [anon_sym_PLUS_PLUS] = ACTIONS(6665), - [anon_sym_sizeof] = ACTIONS(6669), - [sym_number_literal] = ACTIONS(6669), - [sym_char_literal] = ACTIONS(6669), - [sym_string_literal] = ACTIONS(6665), - [sym_identifier] = ACTIONS(6673), + [1479] = { + [ts_builtin_sym_end] = ACTIONS(6689), + [anon_sym_POUNDinclude] = ACTIONS(6693), + [anon_sym_POUNDdefine] = ACTIONS(6693), + [anon_sym_LPAREN] = ACTIONS(6689), + [anon_sym_POUNDif] = ACTIONS(6693), + [anon_sym_POUNDendif] = ACTIONS(6693), + [anon_sym_POUNDifdef] = ACTIONS(6693), + [anon_sym_POUNDifndef] = ACTIONS(6693), + [anon_sym_POUNDelse] = ACTIONS(6693), + [sym_preproc_directive] = ACTIONS(6697), + [anon_sym_SEMI] = ACTIONS(6689), + [anon_sym_extern] = ACTIONS(6693), + [anon_sym_LBRACE] = ACTIONS(6689), + [anon_sym_RBRACE] = ACTIONS(6689), + [anon_sym_STAR] = ACTIONS(6689), + [anon_sym_static] = ACTIONS(6693), + [anon_sym_typedef] = ACTIONS(6693), + [anon_sym_auto] = ACTIONS(6693), + [anon_sym_register] = ACTIONS(6693), + [anon_sym_const] = ACTIONS(6693), + [anon_sym_restrict] = ACTIONS(6693), + [anon_sym_volatile] = ACTIONS(6693), + [sym_function_specifier] = ACTIONS(6693), + [anon_sym_unsigned] = ACTIONS(6693), + [anon_sym_long] = ACTIONS(6693), + [anon_sym_short] = ACTIONS(6693), + [anon_sym_enum] = ACTIONS(6693), + [anon_sym_struct] = ACTIONS(6693), + [anon_sym_union] = ACTIONS(6693), + [anon_sym_if] = ACTIONS(6693), + [anon_sym_else] = ACTIONS(6693), + [anon_sym_switch] = ACTIONS(6693), + [anon_sym_case] = ACTIONS(6693), + [anon_sym_default] = ACTIONS(6693), + [anon_sym_while] = ACTIONS(6693), + [anon_sym_do] = ACTIONS(6693), + [anon_sym_for] = ACTIONS(6693), + [anon_sym_return] = ACTIONS(6693), + [anon_sym_break] = ACTIONS(6693), + [anon_sym_continue] = ACTIONS(6693), + [anon_sym_goto] = ACTIONS(6693), + [anon_sym_AMP] = ACTIONS(6689), + [anon_sym_BANG] = ACTIONS(6689), + [anon_sym_TILDE] = ACTIONS(6689), + [anon_sym_PLUS] = ACTIONS(6693), + [anon_sym_DASH] = ACTIONS(6693), + [anon_sym_DASH_DASH] = ACTIONS(6689), + [anon_sym_PLUS_PLUS] = ACTIONS(6689), + [anon_sym_sizeof] = ACTIONS(6693), + [sym_number_literal] = ACTIONS(6693), + [sym_char_literal] = ACTIONS(6693), + [sym_string_literal] = ACTIONS(6689), + [sym_identifier] = ACTIONS(6697), [sym_comment] = ACTIONS(123), }, - [1474] = { + [1480] = { [sym__top_level_item] = STATE(38), [sym__preproc_statement] = STATE(39), [sym_preproc_include] = STATE(40), @@ -68423,7 +68644,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(1428), + [sym__expression] = STATE(1434), [sym_comma_expression] = STATE(46), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), @@ -68441,29 +68662,29 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(351), - [sym__initializer_list_contents] = STATE(1010), - [sym_designator] = STATE(353), + [sym_initializer_list] = STATE(355), + [sym__initializer_list_contents] = STATE(1014), + [sym_designator] = STATE(357), [sym_concatenated_string] = STATE(34), [sym__empty_declaration] = STATE(39), [sym_macro_type_specifier] = STATE(44), - [aux_sym_translation_unit_repeat1] = STATE(672), + [aux_sym_translation_unit_repeat1] = STATE(676), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [aux_sym__initializer_list_contents_repeat1] = STATE(354), + [aux_sym__initializer_list_contents_repeat1] = STATE(358), [anon_sym_POUNDinclude] = ACTIONS(127), [anon_sym_POUNDdefine] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2793), [anon_sym_POUNDif] = ACTIONS(133), [anon_sym_POUNDifdef] = ACTIONS(135), [anon_sym_POUNDifndef] = ACTIONS(135), [sym_preproc_directive] = ACTIONS(137), [anon_sym_SEMI] = ACTIONS(139), [anon_sym_extern] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(6677), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(6701), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(1024), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), [anon_sym_auto] = ACTIONS(147), @@ -68489,219 +68710,219 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(177), [anon_sym_continue] = ACTIONS(179), [anon_sym_goto] = ACTIONS(181), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_sizeof] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(1036), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(271), [sym_comment] = ACTIONS(123), }, - [1475] = { - [ts_builtin_sym_end] = ACTIONS(6679), - [anon_sym_POUNDinclude] = ACTIONS(6688), - [anon_sym_POUNDdefine] = ACTIONS(6688), - [anon_sym_LPAREN] = ACTIONS(6679), - [anon_sym_POUNDif] = ACTIONS(6688), - [anon_sym_POUNDendif] = ACTIONS(6688), - [anon_sym_POUNDifdef] = ACTIONS(6688), - [anon_sym_POUNDifndef] = ACTIONS(6688), - [anon_sym_POUNDelse] = ACTIONS(6688), - [sym_preproc_directive] = ACTIONS(6697), - [anon_sym_SEMI] = ACTIONS(6679), - [anon_sym_extern] = ACTIONS(6688), - [anon_sym_LBRACE] = ACTIONS(6679), - [anon_sym_RBRACE] = ACTIONS(6679), - [anon_sym_STAR] = ACTIONS(6679), - [anon_sym_static] = ACTIONS(6688), - [anon_sym_typedef] = ACTIONS(6688), - [anon_sym_auto] = ACTIONS(6688), - [anon_sym_register] = ACTIONS(6688), - [anon_sym_const] = ACTIONS(6688), - [anon_sym_restrict] = ACTIONS(6688), - [anon_sym_volatile] = ACTIONS(6688), - [sym_function_specifier] = ACTIONS(6688), - [anon_sym_unsigned] = ACTIONS(6688), - [anon_sym_long] = ACTIONS(6688), - [anon_sym_short] = ACTIONS(6688), - [anon_sym_enum] = ACTIONS(6688), - [anon_sym_struct] = ACTIONS(6688), - [anon_sym_union] = ACTIONS(6688), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_else] = ACTIONS(6706), - [anon_sym_switch] = ACTIONS(6688), - [anon_sym_case] = ACTIONS(6688), - [anon_sym_default] = ACTIONS(6688), - [anon_sym_while] = ACTIONS(6688), - [anon_sym_do] = ACTIONS(6688), - [anon_sym_for] = ACTIONS(6688), - [anon_sym_return] = ACTIONS(6688), - [anon_sym_break] = ACTIONS(6688), - [anon_sym_continue] = ACTIONS(6688), - [anon_sym_goto] = ACTIONS(6688), - [anon_sym_AMP] = ACTIONS(6679), - [anon_sym_BANG] = ACTIONS(6679), - [anon_sym_TILDE] = ACTIONS(6679), - [anon_sym_PLUS] = ACTIONS(6688), - [anon_sym_DASH] = ACTIONS(6688), - [anon_sym_DASH_DASH] = ACTIONS(6679), - [anon_sym_PLUS_PLUS] = ACTIONS(6679), - [anon_sym_sizeof] = ACTIONS(6688), - [sym_number_literal] = ACTIONS(6688), - [sym_char_literal] = ACTIONS(6688), - [sym_string_literal] = ACTIONS(6679), - [sym_identifier] = ACTIONS(6697), + [1481] = { + [ts_builtin_sym_end] = ACTIONS(6703), + [anon_sym_POUNDinclude] = ACTIONS(6712), + [anon_sym_POUNDdefine] = ACTIONS(6712), + [anon_sym_LPAREN] = ACTIONS(6703), + [anon_sym_POUNDif] = ACTIONS(6712), + [anon_sym_POUNDendif] = ACTIONS(6712), + [anon_sym_POUNDifdef] = ACTIONS(6712), + [anon_sym_POUNDifndef] = ACTIONS(6712), + [anon_sym_POUNDelse] = ACTIONS(6712), + [sym_preproc_directive] = ACTIONS(6721), + [anon_sym_SEMI] = ACTIONS(6703), + [anon_sym_extern] = ACTIONS(6712), + [anon_sym_LBRACE] = ACTIONS(6703), + [anon_sym_RBRACE] = ACTIONS(6703), + [anon_sym_STAR] = ACTIONS(6703), + [anon_sym_static] = ACTIONS(6712), + [anon_sym_typedef] = ACTIONS(6712), + [anon_sym_auto] = ACTIONS(6712), + [anon_sym_register] = ACTIONS(6712), + [anon_sym_const] = ACTIONS(6712), + [anon_sym_restrict] = ACTIONS(6712), + [anon_sym_volatile] = ACTIONS(6712), + [sym_function_specifier] = ACTIONS(6712), + [anon_sym_unsigned] = ACTIONS(6712), + [anon_sym_long] = ACTIONS(6712), + [anon_sym_short] = ACTIONS(6712), + [anon_sym_enum] = ACTIONS(6712), + [anon_sym_struct] = ACTIONS(6712), + [anon_sym_union] = ACTIONS(6712), + [anon_sym_if] = ACTIONS(6712), + [anon_sym_else] = ACTIONS(6730), + [anon_sym_switch] = ACTIONS(6712), + [anon_sym_case] = ACTIONS(6712), + [anon_sym_default] = ACTIONS(6712), + [anon_sym_while] = ACTIONS(6712), + [anon_sym_do] = ACTIONS(6712), + [anon_sym_for] = ACTIONS(6712), + [anon_sym_return] = ACTIONS(6712), + [anon_sym_break] = ACTIONS(6712), + [anon_sym_continue] = ACTIONS(6712), + [anon_sym_goto] = ACTIONS(6712), + [anon_sym_AMP] = ACTIONS(6703), + [anon_sym_BANG] = ACTIONS(6703), + [anon_sym_TILDE] = ACTIONS(6703), + [anon_sym_PLUS] = ACTIONS(6712), + [anon_sym_DASH] = ACTIONS(6712), + [anon_sym_DASH_DASH] = ACTIONS(6703), + [anon_sym_PLUS_PLUS] = ACTIONS(6703), + [anon_sym_sizeof] = ACTIONS(6712), + [sym_number_literal] = ACTIONS(6712), + [sym_char_literal] = ACTIONS(6712), + [sym_string_literal] = ACTIONS(6703), + [sym_identifier] = ACTIONS(6721), [sym_comment] = ACTIONS(123), }, - [1476] = { - [sym_argument_list] = STATE(968), - [anon_sym_LF] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(4089), - [anon_sym_COMMA] = ACTIONS(6716), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(6719), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4095), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(4098), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(4101), - [anon_sym_STAR_EQ] = ACTIONS(4104), - [anon_sym_SLASH_EQ] = ACTIONS(4104), - [anon_sym_PERCENT_EQ] = ACTIONS(4104), - [anon_sym_PLUS_EQ] = ACTIONS(4104), - [anon_sym_DASH_EQ] = ACTIONS(4104), - [anon_sym_LT_LT_EQ] = ACTIONS(4104), - [anon_sym_GT_GT_EQ] = ACTIONS(4104), - [anon_sym_AMP_EQ] = ACTIONS(4104), - [anon_sym_CARET_EQ] = ACTIONS(4104), - [anon_sym_PIPE_EQ] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE] = ACTIONS(4107), - [anon_sym_CARET] = ACTIONS(4107), - [anon_sym_EQ_EQ] = ACTIONS(4113), - [anon_sym_BANG_EQ] = ACTIONS(4113), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_LT_EQ] = ACTIONS(4119), - [anon_sym_GT_EQ] = ACTIONS(4119), - [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4125), - [anon_sym_PLUS_PLUS] = ACTIONS(4125), - [anon_sym_DOT] = ACTIONS(4128), - [anon_sym_DASH_GT] = ACTIONS(4128), + [1482] = { + [sym_argument_list] = STATE(972), + [anon_sym_LF] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(4106), + [anon_sym_COMMA] = ACTIONS(6740), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(6743), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(4115), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_STAR_EQ] = ACTIONS(4121), + [anon_sym_SLASH_EQ] = ACTIONS(4121), + [anon_sym_PERCENT_EQ] = ACTIONS(4121), + [anon_sym_PLUS_EQ] = ACTIONS(4121), + [anon_sym_DASH_EQ] = ACTIONS(4121), + [anon_sym_LT_LT_EQ] = ACTIONS(4121), + [anon_sym_GT_GT_EQ] = ACTIONS(4121), + [anon_sym_AMP_EQ] = ACTIONS(4121), + [anon_sym_CARET_EQ] = ACTIONS(4121), + [anon_sym_PIPE_EQ] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4127), + [anon_sym_AMP_AMP] = ACTIONS(4127), + [anon_sym_PIPE] = ACTIONS(4124), + [anon_sym_CARET] = ACTIONS(4124), + [anon_sym_EQ_EQ] = ACTIONS(4130), + [anon_sym_BANG_EQ] = ACTIONS(4130), + [anon_sym_LT] = ACTIONS(4133), + [anon_sym_GT] = ACTIONS(4133), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_LT] = ACTIONS(4139), + [anon_sym_GT_GT] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_SLASH] = ACTIONS(4109), + [anon_sym_PERCENT] = ACTIONS(4109), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DASH_GT] = ACTIONS(4145), [sym_comment] = ACTIONS(123), }, - [1477] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [anon_sym_POUNDinclude] = ACTIONS(1605), - [anon_sym_POUNDdefine] = ACTIONS(1605), - [anon_sym_LF] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(6631), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_POUNDif] = ACTIONS(1605), - [anon_sym_POUNDendif] = ACTIONS(1605), - [anon_sym_POUNDifdef] = ACTIONS(1605), - [anon_sym_POUNDifndef] = ACTIONS(1605), - [anon_sym_POUNDelse] = ACTIONS(1605), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(6631), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(6631), - [anon_sym_STAR] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_auto] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [sym_function_specifier] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_COLON] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [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(6722), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(1603), - [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(6722), - [anon_sym_DASH] = ACTIONS(6722), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(6631), - [anon_sym_PLUS_PLUS] = ACTIONS(6631), - [anon_sym_sizeof] = ACTIONS(1605), - [anon_sym_DOT] = ACTIONS(1031), - [anon_sym_DASH_GT] = ACTIONS(1031), - [sym_number_literal] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [sym_string_literal] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1607), + [1483] = { + [ts_builtin_sym_end] = ACTIONS(1618), + [anon_sym_POUNDinclude] = ACTIONS(1620), + [anon_sym_POUNDdefine] = ACTIONS(1620), + [anon_sym_LF] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(6655), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_POUNDif] = ACTIONS(1620), + [anon_sym_POUNDendif] = ACTIONS(1620), + [anon_sym_POUNDifdef] = ACTIONS(1620), + [anon_sym_POUNDifndef] = ACTIONS(1620), + [anon_sym_POUNDelse] = ACTIONS(1620), + [sym_preproc_directive] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(6655), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1620), + [anon_sym_auto] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1620), + [anon_sym_restrict] = ACTIONS(1620), + [anon_sym_volatile] = ACTIONS(1620), + [sym_function_specifier] = ACTIONS(1620), + [anon_sym_unsigned] = ACTIONS(1620), + [anon_sym_long] = ACTIONS(1620), + [anon_sym_short] = ACTIONS(1620), + [anon_sym_enum] = ACTIONS(1620), + [anon_sym_struct] = ACTIONS(1620), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_else] = ACTIONS(1620), + [anon_sym_switch] = ACTIONS(1620), + [anon_sym_case] = ACTIONS(1620), + [anon_sym_default] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_do] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_return] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_goto] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(6655), + [anon_sym_PLUS_PLUS] = ACTIONS(6655), + [anon_sym_sizeof] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(1046), + [sym_number_literal] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [sym_string_literal] = ACTIONS(1618), + [sym_identifier] = ACTIONS(1622), [sym_comment] = ACTIONS(123), }, - [1478] = { - [sym__declarator] = STATE(268), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [1484] = { + [sym__declarator] = STATE(271), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -68726,13 +68947,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1503), + [sym_type_name] = STATE(1509), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), [aux_sym_sized_type_specifier_repeat1] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(6725), - [anon_sym_STAR] = ACTIONS(6727), + [anon_sym_LPAREN] = ACTIONS(6749), + [anon_sym_STAR] = ACTIONS(6751), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -68753,67 +68974,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6039), + [sym_identifier] = ACTIONS(6753), [sym_comment] = ACTIONS(123), }, - [1479] = { - [anon_sym_COMMA] = ACTIONS(6729), - [anon_sym_RPAREN] = ACTIONS(6729), + [1485] = { + [anon_sym_COMMA] = ACTIONS(6755), + [anon_sym_RPAREN] = ACTIONS(6755), [sym_comment] = ACTIONS(123), }, - [1480] = { - [anon_sym_LF] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(6734), - [anon_sym_COMMA] = ACTIONS(6734), - [anon_sym_RPAREN] = ACTIONS(6734), - [anon_sym_SEMI] = ACTIONS(6734), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6734), - [anon_sym_RBRACK] = ACTIONS(1089), - [anon_sym_EQ] = ACTIONS(1091), - [anon_sym_COLON] = ACTIONS(6734), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_STAR_EQ] = ACTIONS(1089), - [anon_sym_SLASH_EQ] = ACTIONS(1089), - [anon_sym_PERCENT_EQ] = ACTIONS(1089), - [anon_sym_PLUS_EQ] = ACTIONS(1089), - [anon_sym_DASH_EQ] = ACTIONS(1089), - [anon_sym_LT_LT_EQ] = ACTIONS(1089), - [anon_sym_GT_GT_EQ] = ACTIONS(1089), - [anon_sym_AMP_EQ] = ACTIONS(1089), - [anon_sym_CARET_EQ] = ACTIONS(1089), - [anon_sym_PIPE_EQ] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1091), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1091), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_EQ_EQ] = ACTIONS(1089), - [anon_sym_BANG_EQ] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_GT] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_SLASH] = ACTIONS(1091), - [anon_sym_PERCENT] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_DASH_GT] = ACTIONS(1089), - [sym_identifier] = ACTIONS(5281), + [1486] = { + [anon_sym_LF] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(6760), + [anon_sym_COMMA] = ACTIONS(6760), + [anon_sym_RPAREN] = ACTIONS(6760), + [anon_sym_SEMI] = ACTIONS(6760), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6760), + [anon_sym_RBRACK] = ACTIONS(1104), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(6760), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1104), + [anon_sym_SLASH_EQ] = ACTIONS(1104), + [anon_sym_PERCENT_EQ] = ACTIONS(1104), + [anon_sym_PLUS_EQ] = ACTIONS(1104), + [anon_sym_DASH_EQ] = ACTIONS(1104), + [anon_sym_LT_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_GT_EQ] = ACTIONS(1104), + [anon_sym_AMP_EQ] = ACTIONS(1104), + [anon_sym_CARET_EQ] = ACTIONS(1104), + [anon_sym_PIPE_EQ] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1104), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_EQ_EQ] = ACTIONS(1104), + [anon_sym_BANG_EQ] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_LT_EQ] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DASH_GT] = ACTIONS(1104), + [sym_identifier] = ACTIONS(5299), [sym_comment] = ACTIONS(123), }, - [1481] = { - [sym__declarator] = STATE(1336), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym__expression] = STATE(1502), + [1487] = { + [sym__declarator] = STATE(1340), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym__expression] = STATE(1508), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -68831,24 +69052,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6742), + [sym_identifier] = ACTIONS(6768), [sym_comment] = ACTIONS(123), }, - [1482] = { - [sym__expression] = STATE(1502), + [1488] = { + [sym__expression] = STATE(1508), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -68866,24 +69087,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1483] = { - [sym__expression] = STATE(1521), + [1489] = { + [sym__expression] = STATE(1527), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -68901,24 +69122,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1484] = { - [sym__expression] = STATE(1520), + [1490] = { + [sym__expression] = STATE(1526), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -68936,24 +69157,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1485] = { - [sym__expression] = STATE(1519), + [1491] = { + [sym__expression] = STATE(1525), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -68971,24 +69192,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1486] = { - [sym__expression] = STATE(1516), + [1492] = { + [sym__expression] = STATE(1522), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69006,32 +69227,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6772), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1487] = { - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_RPAREN] = ACTIONS(6755), - [anon_sym_SEMI] = ACTIONS(6041), - [anon_sym_RBRACE] = ACTIONS(5425), + [1493] = { + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6774), + [anon_sym_RPAREN] = ACTIONS(6781), + [anon_sym_SEMI] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(5443), [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(6116), - [anon_sym_EQ] = ACTIONS(6760), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(6786), + [anon_sym_COLON] = ACTIONS(821), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -69067,71 +69288,71 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1488] = { - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_SEMI] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(6769), + [1494] = { + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(6790), + [anon_sym_SEMI] = ACTIONS(6790), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_COLON] = ACTIONS(6795), [sym_comment] = ACTIONS(123), }, - [1489] = { - [anon_sym_COMMA] = ACTIONS(6772), - [anon_sym_SEMI] = ACTIONS(6772), + [1495] = { + [anon_sym_COMMA] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6798), [sym_comment] = ACTIONS(123), }, - [1490] = { - [anon_sym_COMMA] = ACTIONS(6775), - [anon_sym_RPAREN] = ACTIONS(6775), + [1496] = { + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), [sym_comment] = ACTIONS(123), }, - [1491] = { + [1497] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(6778), - [anon_sym_RPAREN] = ACTIONS(6783), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(6787), + [anon_sym_COMMA] = ACTIONS(6804), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(6813), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_QMARK] = ACTIONS(6791), - [anon_sym_STAR_EQ] = ACTIONS(6793), - [anon_sym_SLASH_EQ] = ACTIONS(6793), - [anon_sym_PERCENT_EQ] = ACTIONS(6793), - [anon_sym_PLUS_EQ] = ACTIONS(6793), - [anon_sym_DASH_EQ] = ACTIONS(6793), - [anon_sym_LT_LT_EQ] = ACTIONS(6793), - [anon_sym_GT_GT_EQ] = ACTIONS(6793), - [anon_sym_AMP_EQ] = ACTIONS(6793), - [anon_sym_CARET_EQ] = ACTIONS(6793), - [anon_sym_PIPE_EQ] = ACTIONS(6793), - [anon_sym_AMP] = ACTIONS(6795), - [anon_sym_PIPE_PIPE] = ACTIONS(6797), - [anon_sym_AMP_AMP] = ACTIONS(6797), - [anon_sym_PIPE] = ACTIONS(6795), - [anon_sym_CARET] = ACTIONS(6795), - [anon_sym_EQ_EQ] = ACTIONS(6799), - [anon_sym_BANG_EQ] = ACTIONS(6799), - [anon_sym_LT] = ACTIONS(6801), - [anon_sym_GT] = ACTIONS(6801), - [anon_sym_LT_EQ] = ACTIONS(6803), - [anon_sym_GT_EQ] = ACTIONS(6803), - [anon_sym_LT_LT] = ACTIONS(6805), - [anon_sym_GT_GT] = ACTIONS(6805), - [anon_sym_PLUS] = ACTIONS(6787), - [anon_sym_DASH] = ACTIONS(6787), - [anon_sym_SLASH] = ACTIONS(6787), - [anon_sym_PERCENT] = ACTIONS(6787), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_EQ_EQ] = ACTIONS(6825), + [anon_sym_BANG_EQ] = ACTIONS(6825), + [anon_sym_LT] = ACTIONS(6827), + [anon_sym_GT] = ACTIONS(6827), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6831), + [anon_sym_GT_GT] = ACTIONS(6831), + [anon_sym_PLUS] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6813), + [anon_sym_SLASH] = ACTIONS(6813), + [anon_sym_PERCENT] = ACTIONS(6813), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1492] = { - [sym__expression] = STATE(1501), + [1498] = { + [sym__expression] = STATE(1507), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69149,24 +69370,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1493] = { - [sym__expression] = STATE(1511), + [1499] = { + [sym__expression] = STATE(1517), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69184,24 +69405,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1494] = { - [sym__expression] = STATE(1512), + [1500] = { + [sym__expression] = STATE(1518), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69235,8 +69456,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1495] = { - [sym__expression] = STATE(1509), + [1501] = { + [sym__expression] = STATE(1515), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69254,24 +69475,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1496] = { - [sym__expression] = STATE(1510), + [1502] = { + [sym__expression] = STATE(1516), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69289,24 +69510,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1497] = { - [sym__expression] = STATE(1508), + [1503] = { + [sym__expression] = STATE(1514), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69324,24 +69545,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1498] = { - [sym__expression] = STATE(1507), + [1504] = { + [sym__expression] = STATE(1513), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69359,24 +69580,24 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1499] = { - [sym__expression] = STATE(1506), + [1505] = { + [sym__expression] = STATE(1512), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69394,23 +69615,23 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1500] = { + [1506] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -69435,7 +69656,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1503), + [sym_type_name] = STATE(1509), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -69465,100 +69686,100 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1501] = { + [1507] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4617), [anon_sym_COMMA] = ACTIONS(540), [anon_sym_RPAREN] = ACTIONS(540), [anon_sym_SEMI] = ACTIONS(540), [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(6807), - [anon_sym_LBRACK] = ACTIONS(4606), - [anon_sym_EQ] = ACTIONS(6810), - [anon_sym_QMARK] = ACTIONS(6813), - [anon_sym_STAR_EQ] = ACTIONS(6816), - [anon_sym_SLASH_EQ] = ACTIONS(6816), - [anon_sym_PERCENT_EQ] = ACTIONS(6816), - [anon_sym_PLUS_EQ] = ACTIONS(6816), - [anon_sym_DASH_EQ] = ACTIONS(6816), - [anon_sym_LT_LT_EQ] = ACTIONS(6816), - [anon_sym_GT_GT_EQ] = ACTIONS(6816), - [anon_sym_AMP_EQ] = ACTIONS(6816), - [anon_sym_CARET_EQ] = ACTIONS(6816), - [anon_sym_PIPE_EQ] = ACTIONS(6816), - [anon_sym_AMP] = ACTIONS(6819), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6819), - [anon_sym_CARET] = ACTIONS(6819), - [anon_sym_EQ_EQ] = ACTIONS(6825), - [anon_sym_BANG_EQ] = ACTIONS(6825), - [anon_sym_LT] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6828), - [anon_sym_LT_EQ] = ACTIONS(6831), - [anon_sym_GT_EQ] = ACTIONS(6831), - [anon_sym_LT_LT] = ACTIONS(6834), - [anon_sym_GT_GT] = ACTIONS(6834), - [anon_sym_PLUS] = ACTIONS(6807), - [anon_sym_DASH] = ACTIONS(6807), - [anon_sym_SLASH] = ACTIONS(6807), - [anon_sym_PERCENT] = ACTIONS(6807), - [anon_sym_DASH_DASH] = ACTIONS(4636), - [anon_sym_PLUS_PLUS] = ACTIONS(4636), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_DASH_GT] = ACTIONS(4639), + [anon_sym_STAR] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(6836), + [anon_sym_QMARK] = ACTIONS(6839), + [anon_sym_STAR_EQ] = ACTIONS(6842), + [anon_sym_SLASH_EQ] = ACTIONS(6842), + [anon_sym_PERCENT_EQ] = ACTIONS(6842), + [anon_sym_PLUS_EQ] = ACTIONS(6842), + [anon_sym_DASH_EQ] = ACTIONS(6842), + [anon_sym_LT_LT_EQ] = ACTIONS(6842), + [anon_sym_GT_GT_EQ] = ACTIONS(6842), + [anon_sym_AMP_EQ] = ACTIONS(6842), + [anon_sym_CARET_EQ] = ACTIONS(6842), + [anon_sym_PIPE_EQ] = ACTIONS(6842), + [anon_sym_AMP] = ACTIONS(6845), + [anon_sym_PIPE_PIPE] = ACTIONS(6848), + [anon_sym_AMP_AMP] = ACTIONS(6848), + [anon_sym_PIPE] = ACTIONS(6845), + [anon_sym_CARET] = ACTIONS(6845), + [anon_sym_EQ_EQ] = ACTIONS(6851), + [anon_sym_BANG_EQ] = ACTIONS(6851), + [anon_sym_LT] = ACTIONS(6854), + [anon_sym_GT] = ACTIONS(6854), + [anon_sym_LT_EQ] = ACTIONS(6857), + [anon_sym_GT_EQ] = ACTIONS(6857), + [anon_sym_LT_LT] = ACTIONS(6860), + [anon_sym_GT_GT] = ACTIONS(6860), + [anon_sym_PLUS] = ACTIONS(6833), + [anon_sym_DASH] = ACTIONS(6833), + [anon_sym_SLASH] = ACTIONS(6833), + [anon_sym_PERCENT] = ACTIONS(6833), + [anon_sym_DASH_DASH] = ACTIONS(4653), + [anon_sym_PLUS_PLUS] = ACTIONS(4653), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(4656), [sym_comment] = ACTIONS(123), }, - [1502] = { + [1508] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(1123), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(6837), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(6840), - [anon_sym_QMARK] = ACTIONS(6843), - [anon_sym_STAR_EQ] = ACTIONS(6846), - [anon_sym_SLASH_EQ] = ACTIONS(6846), - [anon_sym_PERCENT_EQ] = ACTIONS(6846), - [anon_sym_PLUS_EQ] = ACTIONS(6846), - [anon_sym_DASH_EQ] = ACTIONS(6846), - [anon_sym_LT_LT_EQ] = ACTIONS(6846), - [anon_sym_GT_GT_EQ] = ACTIONS(6846), - [anon_sym_AMP_EQ] = ACTIONS(6846), - [anon_sym_CARET_EQ] = ACTIONS(6846), - [anon_sym_PIPE_EQ] = ACTIONS(6846), - [anon_sym_AMP] = ACTIONS(6849), - [anon_sym_PIPE_PIPE] = ACTIONS(6852), - [anon_sym_AMP_AMP] = ACTIONS(6852), - [anon_sym_PIPE] = ACTIONS(6849), - [anon_sym_CARET] = ACTIONS(6849), - [anon_sym_EQ_EQ] = ACTIONS(6855), - [anon_sym_BANG_EQ] = ACTIONS(6855), - [anon_sym_LT] = ACTIONS(6858), - [anon_sym_GT] = ACTIONS(6858), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6864), - [anon_sym_GT_GT] = ACTIONS(6864), - [anon_sym_PLUS] = ACTIONS(6837), - [anon_sym_DASH] = ACTIONS(6837), - [anon_sym_SLASH] = ACTIONS(6837), - [anon_sym_PERCENT] = ACTIONS(6837), - [anon_sym_DASH_DASH] = ACTIONS(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5213), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DASH_GT] = ACTIONS(5216), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(6863), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(6866), + [anon_sym_QMARK] = ACTIONS(6869), + [anon_sym_STAR_EQ] = ACTIONS(6872), + [anon_sym_SLASH_EQ] = ACTIONS(6872), + [anon_sym_PERCENT_EQ] = ACTIONS(6872), + [anon_sym_PLUS_EQ] = ACTIONS(6872), + [anon_sym_DASH_EQ] = ACTIONS(6872), + [anon_sym_LT_LT_EQ] = ACTIONS(6872), + [anon_sym_GT_GT_EQ] = ACTIONS(6872), + [anon_sym_AMP_EQ] = ACTIONS(6872), + [anon_sym_CARET_EQ] = ACTIONS(6872), + [anon_sym_PIPE_EQ] = ACTIONS(6872), + [anon_sym_AMP] = ACTIONS(6875), + [anon_sym_PIPE_PIPE] = ACTIONS(6878), + [anon_sym_AMP_AMP] = ACTIONS(6878), + [anon_sym_PIPE] = ACTIONS(6875), + [anon_sym_CARET] = ACTIONS(6875), + [anon_sym_EQ_EQ] = ACTIONS(6881), + [anon_sym_BANG_EQ] = ACTIONS(6881), + [anon_sym_LT] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6887), + [anon_sym_GT_EQ] = ACTIONS(6887), + [anon_sym_LT_LT] = ACTIONS(6890), + [anon_sym_GT_GT] = ACTIONS(6890), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6863), + [anon_sym_SLASH] = ACTIONS(6863), + [anon_sym_PERCENT] = ACTIONS(6863), + [anon_sym_DASH_DASH] = ACTIONS(5230), + [anon_sym_PLUS_PLUS] = ACTIONS(5230), + [anon_sym_DOT] = ACTIONS(5233), + [anon_sym_DASH_GT] = ACTIONS(5233), [sym_comment] = ACTIONS(123), }, - [1503] = { - [anon_sym_RPAREN] = ACTIONS(6867), + [1509] = { + [anon_sym_RPAREN] = ACTIONS(6893), [sym_comment] = ACTIONS(123), }, - [1504] = { - [sym__expression] = STATE(1505), + [1510] = { + [sym__expression] = STATE(1511), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69575,340 +69796,340 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1505] = { + [1511] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(6869), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(6872), - [anon_sym_QMARK] = ACTIONS(6875), - [anon_sym_STAR_EQ] = ACTIONS(6878), - [anon_sym_SLASH_EQ] = ACTIONS(6878), - [anon_sym_PERCENT_EQ] = ACTIONS(6878), - [anon_sym_PLUS_EQ] = ACTIONS(6878), - [anon_sym_DASH_EQ] = ACTIONS(6878), - [anon_sym_LT_LT_EQ] = ACTIONS(6878), - [anon_sym_GT_GT_EQ] = ACTIONS(6878), - [anon_sym_AMP_EQ] = ACTIONS(6878), - [anon_sym_CARET_EQ] = ACTIONS(6878), - [anon_sym_PIPE_EQ] = ACTIONS(6878), - [anon_sym_AMP] = ACTIONS(6881), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6881), - [anon_sym_CARET] = ACTIONS(6881), - [anon_sym_EQ_EQ] = ACTIONS(6887), - [anon_sym_BANG_EQ] = ACTIONS(6887), - [anon_sym_LT] = ACTIONS(6890), - [anon_sym_GT] = ACTIONS(6890), - [anon_sym_LT_EQ] = ACTIONS(6893), - [anon_sym_GT_EQ] = ACTIONS(6893), - [anon_sym_LT_LT] = ACTIONS(6896), - [anon_sym_GT_GT] = ACTIONS(6896), - [anon_sym_PLUS] = ACTIONS(6869), - [anon_sym_DASH] = ACTIONS(6869), - [anon_sym_SLASH] = ACTIONS(6869), - [anon_sym_PERCENT] = ACTIONS(6869), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_DASH_GT] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(6895), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(6898), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_STAR_EQ] = ACTIONS(6904), + [anon_sym_SLASH_EQ] = ACTIONS(6904), + [anon_sym_PERCENT_EQ] = ACTIONS(6904), + [anon_sym_PLUS_EQ] = ACTIONS(6904), + [anon_sym_DASH_EQ] = ACTIONS(6904), + [anon_sym_LT_LT_EQ] = ACTIONS(6904), + [anon_sym_GT_GT_EQ] = ACTIONS(6904), + [anon_sym_AMP_EQ] = ACTIONS(6904), + [anon_sym_CARET_EQ] = ACTIONS(6904), + [anon_sym_PIPE_EQ] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6907), + [anon_sym_PIPE_PIPE] = ACTIONS(6910), + [anon_sym_AMP_AMP] = ACTIONS(6910), + [anon_sym_PIPE] = ACTIONS(6907), + [anon_sym_CARET] = ACTIONS(6907), + [anon_sym_EQ_EQ] = ACTIONS(6913), + [anon_sym_BANG_EQ] = ACTIONS(6913), + [anon_sym_LT] = ACTIONS(6916), + [anon_sym_GT] = ACTIONS(6916), + [anon_sym_LT_EQ] = ACTIONS(6919), + [anon_sym_GT_EQ] = ACTIONS(6919), + [anon_sym_LT_LT] = ACTIONS(6922), + [anon_sym_GT_GT] = ACTIONS(6922), + [anon_sym_PLUS] = ACTIONS(6895), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_SLASH] = ACTIONS(6895), + [anon_sym_PERCENT] = ACTIONS(6895), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_DASH_GT] = ACTIONS(5065), [sym_comment] = ACTIONS(123), }, - [1506] = { + [1512] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4659), [anon_sym_COMMA] = ACTIONS(544), [anon_sym_RPAREN] = ACTIONS(544), [anon_sym_SEMI] = ACTIONS(544), [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(6899), - [anon_sym_LBRACK] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(6902), - [anon_sym_QMARK] = ACTIONS(6905), - [anon_sym_STAR_EQ] = ACTIONS(6908), - [anon_sym_SLASH_EQ] = ACTIONS(6908), - [anon_sym_PERCENT_EQ] = ACTIONS(6908), - [anon_sym_PLUS_EQ] = ACTIONS(6908), - [anon_sym_DASH_EQ] = ACTIONS(6908), - [anon_sym_LT_LT_EQ] = ACTIONS(6908), - [anon_sym_GT_GT_EQ] = ACTIONS(6908), - [anon_sym_AMP_EQ] = ACTIONS(6908), - [anon_sym_CARET_EQ] = ACTIONS(6908), - [anon_sym_PIPE_EQ] = ACTIONS(6908), - [anon_sym_AMP] = ACTIONS(6911), - [anon_sym_PIPE_PIPE] = ACTIONS(6914), - [anon_sym_AMP_AMP] = ACTIONS(6914), - [anon_sym_PIPE] = ACTIONS(6911), - [anon_sym_CARET] = ACTIONS(6911), - [anon_sym_EQ_EQ] = ACTIONS(6917), - [anon_sym_BANG_EQ] = ACTIONS(6917), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_LT_EQ] = ACTIONS(6923), - [anon_sym_GT_EQ] = ACTIONS(6923), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6926), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6899), - [anon_sym_DASH_DASH] = ACTIONS(4678), - [anon_sym_PLUS_PLUS] = ACTIONS(4678), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_DASH_GT] = ACTIONS(4681), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(6928), + [anon_sym_QMARK] = ACTIONS(6931), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6937), + [anon_sym_PIPE_PIPE] = ACTIONS(6940), + [anon_sym_AMP_AMP] = ACTIONS(6940), + [anon_sym_PIPE] = ACTIONS(6937), + [anon_sym_CARET] = ACTIONS(6937), + [anon_sym_EQ_EQ] = ACTIONS(6943), + [anon_sym_BANG_EQ] = ACTIONS(6943), + [anon_sym_LT] = ACTIONS(6946), + [anon_sym_GT] = ACTIONS(6946), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6952), + [anon_sym_GT_GT] = ACTIONS(6952), + [anon_sym_PLUS] = ACTIONS(6925), + [anon_sym_DASH] = ACTIONS(6925), + [anon_sym_SLASH] = ACTIONS(6925), + [anon_sym_PERCENT] = ACTIONS(6925), + [anon_sym_DASH_DASH] = ACTIONS(4695), + [anon_sym_PLUS_PLUS] = ACTIONS(4695), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4698), [sym_comment] = ACTIONS(123), }, - [1507] = { + [1513] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4701), [anon_sym_COMMA] = ACTIONS(548), [anon_sym_RPAREN] = ACTIONS(548), [anon_sym_SEMI] = ACTIONS(548), [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_LBRACK] = ACTIONS(4690), - [anon_sym_EQ] = ACTIONS(6932), - [anon_sym_QMARK] = ACTIONS(6935), - [anon_sym_STAR_EQ] = ACTIONS(6938), - [anon_sym_SLASH_EQ] = ACTIONS(6938), - [anon_sym_PERCENT_EQ] = ACTIONS(6938), - [anon_sym_PLUS_EQ] = ACTIONS(6938), - [anon_sym_DASH_EQ] = ACTIONS(6938), - [anon_sym_LT_LT_EQ] = ACTIONS(6938), - [anon_sym_GT_GT_EQ] = ACTIONS(6938), - [anon_sym_AMP_EQ] = ACTIONS(6938), - [anon_sym_CARET_EQ] = ACTIONS(6938), - [anon_sym_PIPE_EQ] = ACTIONS(6938), - [anon_sym_AMP] = ACTIONS(6941), - [anon_sym_PIPE_PIPE] = ACTIONS(6944), - [anon_sym_AMP_AMP] = ACTIONS(6944), - [anon_sym_PIPE] = ACTIONS(6941), - [anon_sym_CARET] = ACTIONS(6941), - [anon_sym_EQ_EQ] = ACTIONS(6947), - [anon_sym_BANG_EQ] = ACTIONS(6947), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_LT_EQ] = ACTIONS(6953), - [anon_sym_GT_EQ] = ACTIONS(6953), - [anon_sym_LT_LT] = ACTIONS(6956), - [anon_sym_GT_GT] = ACTIONS(6956), - [anon_sym_PLUS] = ACTIONS(6929), - [anon_sym_DASH] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6929), - [anon_sym_PERCENT] = ACTIONS(6929), - [anon_sym_DASH_DASH] = ACTIONS(4720), - [anon_sym_PLUS_PLUS] = ACTIONS(4720), - [anon_sym_DOT] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4723), + [anon_sym_STAR] = ACTIONS(6955), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(6958), + [anon_sym_QMARK] = ACTIONS(6961), + [anon_sym_STAR_EQ] = ACTIONS(6964), + [anon_sym_SLASH_EQ] = ACTIONS(6964), + [anon_sym_PERCENT_EQ] = ACTIONS(6964), + [anon_sym_PLUS_EQ] = ACTIONS(6964), + [anon_sym_DASH_EQ] = ACTIONS(6964), + [anon_sym_LT_LT_EQ] = ACTIONS(6964), + [anon_sym_GT_GT_EQ] = ACTIONS(6964), + [anon_sym_AMP_EQ] = ACTIONS(6964), + [anon_sym_CARET_EQ] = ACTIONS(6964), + [anon_sym_PIPE_EQ] = ACTIONS(6964), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_PIPE_PIPE] = ACTIONS(6970), + [anon_sym_AMP_AMP] = ACTIONS(6970), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6973), + [anon_sym_BANG_EQ] = ACTIONS(6973), + [anon_sym_LT] = ACTIONS(6976), + [anon_sym_GT] = ACTIONS(6976), + [anon_sym_LT_EQ] = ACTIONS(6979), + [anon_sym_GT_EQ] = ACTIONS(6979), + [anon_sym_LT_LT] = ACTIONS(6982), + [anon_sym_GT_GT] = ACTIONS(6982), + [anon_sym_PLUS] = ACTIONS(6955), + [anon_sym_DASH] = ACTIONS(6955), + [anon_sym_SLASH] = ACTIONS(6955), + [anon_sym_PERCENT] = ACTIONS(6955), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_PLUS_PLUS] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_DASH_GT] = ACTIONS(4740), [sym_comment] = ACTIONS(123), }, - [1508] = { + [1514] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4743), [anon_sym_COMMA] = ACTIONS(552), [anon_sym_RPAREN] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(552), [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(6959), - [anon_sym_LBRACK] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(6962), - [anon_sym_QMARK] = ACTIONS(6965), - [anon_sym_STAR_EQ] = ACTIONS(6968), - [anon_sym_SLASH_EQ] = ACTIONS(6968), - [anon_sym_PERCENT_EQ] = ACTIONS(6968), - [anon_sym_PLUS_EQ] = ACTIONS(6968), - [anon_sym_DASH_EQ] = ACTIONS(6968), - [anon_sym_LT_LT_EQ] = ACTIONS(6968), - [anon_sym_GT_GT_EQ] = ACTIONS(6968), - [anon_sym_AMP_EQ] = ACTIONS(6968), - [anon_sym_CARET_EQ] = ACTIONS(6968), - [anon_sym_PIPE_EQ] = ACTIONS(6968), - [anon_sym_AMP] = ACTIONS(6971), - [anon_sym_PIPE_PIPE] = ACTIONS(6974), - [anon_sym_AMP_AMP] = ACTIONS(6974), - [anon_sym_PIPE] = ACTIONS(6971), - [anon_sym_CARET] = ACTIONS(6971), - [anon_sym_EQ_EQ] = ACTIONS(6977), - [anon_sym_BANG_EQ] = ACTIONS(6977), - [anon_sym_LT] = ACTIONS(6980), - [anon_sym_GT] = ACTIONS(6980), - [anon_sym_LT_EQ] = ACTIONS(6983), - [anon_sym_GT_EQ] = ACTIONS(6983), - [anon_sym_LT_LT] = ACTIONS(6986), - [anon_sym_GT_GT] = ACTIONS(6986), - [anon_sym_PLUS] = ACTIONS(6959), - [anon_sym_DASH] = ACTIONS(6959), - [anon_sym_SLASH] = ACTIONS(6959), - [anon_sym_PERCENT] = ACTIONS(6959), - [anon_sym_DASH_DASH] = ACTIONS(4762), - [anon_sym_PLUS_PLUS] = ACTIONS(4762), - [anon_sym_DOT] = ACTIONS(4765), - [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_STAR] = ACTIONS(6985), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(6988), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6994), + [anon_sym_SLASH_EQ] = ACTIONS(6994), + [anon_sym_PERCENT_EQ] = ACTIONS(6994), + [anon_sym_PLUS_EQ] = ACTIONS(6994), + [anon_sym_DASH_EQ] = ACTIONS(6994), + [anon_sym_LT_LT_EQ] = ACTIONS(6994), + [anon_sym_GT_GT_EQ] = ACTIONS(6994), + [anon_sym_AMP_EQ] = ACTIONS(6994), + [anon_sym_CARET_EQ] = ACTIONS(6994), + [anon_sym_PIPE_EQ] = ACTIONS(6994), + [anon_sym_AMP] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(7000), + [anon_sym_AMP_AMP] = ACTIONS(7000), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_LT] = ACTIONS(7006), + [anon_sym_GT] = ACTIONS(7006), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7012), + [anon_sym_GT_GT] = ACTIONS(7012), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_DASH_DASH] = ACTIONS(4779), + [anon_sym_PLUS_PLUS] = ACTIONS(4779), + [anon_sym_DOT] = ACTIONS(4782), + [anon_sym_DASH_GT] = ACTIONS(4782), [sym_comment] = ACTIONS(123), }, - [1509] = { + [1515] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4785), [anon_sym_COMMA] = ACTIONS(556), [anon_sym_RPAREN] = ACTIONS(556), [anon_sym_SEMI] = ACTIONS(556), [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(6989), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_EQ] = ACTIONS(6992), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6998), - [anon_sym_SLASH_EQ] = ACTIONS(6998), - [anon_sym_PERCENT_EQ] = ACTIONS(6998), - [anon_sym_PLUS_EQ] = ACTIONS(6998), - [anon_sym_DASH_EQ] = ACTIONS(6998), - [anon_sym_LT_LT_EQ] = ACTIONS(6998), - [anon_sym_GT_GT_EQ] = ACTIONS(6998), - [anon_sym_AMP_EQ] = ACTIONS(6998), - [anon_sym_CARET_EQ] = ACTIONS(6998), - [anon_sym_PIPE_EQ] = ACTIONS(6998), - [anon_sym_AMP] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(7004), - [anon_sym_AMP_AMP] = ACTIONS(7004), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_LT] = ACTIONS(7010), - [anon_sym_GT] = ACTIONS(7010), - [anon_sym_LT_EQ] = ACTIONS(7013), - [anon_sym_GT_EQ] = ACTIONS(7013), - [anon_sym_LT_LT] = ACTIONS(7016), - [anon_sym_GT_GT] = ACTIONS(7016), - [anon_sym_PLUS] = ACTIONS(6989), - [anon_sym_DASH] = ACTIONS(6989), - [anon_sym_SLASH] = ACTIONS(6989), - [anon_sym_PERCENT] = ACTIONS(6989), - [anon_sym_DASH_DASH] = ACTIONS(4804), - [anon_sym_PLUS_PLUS] = ACTIONS(4804), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(7015), + [anon_sym_LBRACK] = ACTIONS(4791), + [anon_sym_EQ] = ACTIONS(7018), + [anon_sym_QMARK] = ACTIONS(7021), + [anon_sym_STAR_EQ] = ACTIONS(7024), + [anon_sym_SLASH_EQ] = ACTIONS(7024), + [anon_sym_PERCENT_EQ] = ACTIONS(7024), + [anon_sym_PLUS_EQ] = ACTIONS(7024), + [anon_sym_DASH_EQ] = ACTIONS(7024), + [anon_sym_LT_LT_EQ] = ACTIONS(7024), + [anon_sym_GT_GT_EQ] = ACTIONS(7024), + [anon_sym_AMP_EQ] = ACTIONS(7024), + [anon_sym_CARET_EQ] = ACTIONS(7024), + [anon_sym_PIPE_EQ] = ACTIONS(7024), + [anon_sym_AMP] = ACTIONS(7027), + [anon_sym_PIPE_PIPE] = ACTIONS(7030), + [anon_sym_AMP_AMP] = ACTIONS(7030), + [anon_sym_PIPE] = ACTIONS(7027), + [anon_sym_CARET] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7033), + [anon_sym_BANG_EQ] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(7036), + [anon_sym_GT] = ACTIONS(7036), + [anon_sym_LT_EQ] = ACTIONS(7039), + [anon_sym_GT_EQ] = ACTIONS(7039), + [anon_sym_LT_LT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7015), + [anon_sym_DASH] = ACTIONS(7015), + [anon_sym_SLASH] = ACTIONS(7015), + [anon_sym_PERCENT] = ACTIONS(7015), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_DASH_GT] = ACTIONS(4824), [sym_comment] = ACTIONS(123), }, - [1510] = { + [1516] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4827), [anon_sym_COMMA] = ACTIONS(560), [anon_sym_RPAREN] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(560), [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(7019), - [anon_sym_LBRACK] = ACTIONS(4816), - [anon_sym_EQ] = ACTIONS(7022), - [anon_sym_QMARK] = ACTIONS(7025), - [anon_sym_STAR_EQ] = ACTIONS(7028), - [anon_sym_SLASH_EQ] = ACTIONS(7028), - [anon_sym_PERCENT_EQ] = ACTIONS(7028), - [anon_sym_PLUS_EQ] = ACTIONS(7028), - [anon_sym_DASH_EQ] = ACTIONS(7028), - [anon_sym_LT_LT_EQ] = ACTIONS(7028), - [anon_sym_GT_GT_EQ] = ACTIONS(7028), - [anon_sym_AMP_EQ] = ACTIONS(7028), - [anon_sym_CARET_EQ] = ACTIONS(7028), - [anon_sym_PIPE_EQ] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(7037), - [anon_sym_BANG_EQ] = ACTIONS(7037), - [anon_sym_LT] = ACTIONS(7040), - [anon_sym_GT] = ACTIONS(7040), - [anon_sym_LT_EQ] = ACTIONS(7043), - [anon_sym_GT_EQ] = ACTIONS(7043), - [anon_sym_LT_LT] = ACTIONS(7046), - [anon_sym_GT_GT] = ACTIONS(7046), - [anon_sym_PLUS] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7019), - [anon_sym_SLASH] = ACTIONS(7019), - [anon_sym_PERCENT] = ACTIONS(7019), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(7045), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(7048), + [anon_sym_QMARK] = ACTIONS(7051), + [anon_sym_STAR_EQ] = ACTIONS(7054), + [anon_sym_SLASH_EQ] = ACTIONS(7054), + [anon_sym_PERCENT_EQ] = ACTIONS(7054), + [anon_sym_PLUS_EQ] = ACTIONS(7054), + [anon_sym_DASH_EQ] = ACTIONS(7054), + [anon_sym_LT_LT_EQ] = ACTIONS(7054), + [anon_sym_GT_GT_EQ] = ACTIONS(7054), + [anon_sym_AMP_EQ] = ACTIONS(7054), + [anon_sym_CARET_EQ] = ACTIONS(7054), + [anon_sym_PIPE_EQ] = ACTIONS(7054), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7060), + [anon_sym_AMP_AMP] = ACTIONS(7060), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_LT] = ACTIONS(7066), + [anon_sym_GT] = ACTIONS(7066), + [anon_sym_LT_EQ] = ACTIONS(7069), + [anon_sym_GT_EQ] = ACTIONS(7069), + [anon_sym_LT_LT] = ACTIONS(7072), + [anon_sym_GT_GT] = ACTIONS(7072), + [anon_sym_PLUS] = ACTIONS(7045), + [anon_sym_DASH] = ACTIONS(7045), + [anon_sym_SLASH] = ACTIONS(7045), + [anon_sym_PERCENT] = ACTIONS(7045), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_PLUS_PLUS] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(4866), + [anon_sym_DASH_GT] = ACTIONS(4866), [sym_comment] = ACTIONS(123), }, - [1511] = { + [1517] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4869), [anon_sym_COMMA] = ACTIONS(564), [anon_sym_RPAREN] = ACTIONS(564), [anon_sym_SEMI] = ACTIONS(564), [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(7049), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_EQ] = ACTIONS(7052), - [anon_sym_QMARK] = ACTIONS(7055), - [anon_sym_STAR_EQ] = ACTIONS(7058), - [anon_sym_SLASH_EQ] = ACTIONS(7058), - [anon_sym_PERCENT_EQ] = ACTIONS(7058), - [anon_sym_PLUS_EQ] = ACTIONS(7058), - [anon_sym_DASH_EQ] = ACTIONS(7058), - [anon_sym_LT_LT_EQ] = ACTIONS(7058), - [anon_sym_GT_GT_EQ] = ACTIONS(7058), - [anon_sym_AMP_EQ] = ACTIONS(7058), - [anon_sym_CARET_EQ] = ACTIONS(7058), - [anon_sym_PIPE_EQ] = ACTIONS(7058), - [anon_sym_AMP] = ACTIONS(7061), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE] = ACTIONS(7061), - [anon_sym_CARET] = ACTIONS(7061), - [anon_sym_EQ_EQ] = ACTIONS(7067), - [anon_sym_BANG_EQ] = ACTIONS(7067), - [anon_sym_LT] = ACTIONS(7070), - [anon_sym_GT] = ACTIONS(7070), - [anon_sym_LT_EQ] = ACTIONS(7073), - [anon_sym_GT_EQ] = ACTIONS(7073), - [anon_sym_LT_LT] = ACTIONS(7076), - [anon_sym_GT_GT] = ACTIONS(7076), - [anon_sym_PLUS] = ACTIONS(7049), - [anon_sym_DASH] = ACTIONS(7049), - [anon_sym_SLASH] = ACTIONS(7049), - [anon_sym_PERCENT] = ACTIONS(7049), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DASH_GT] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(7075), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_EQ] = ACTIONS(7078), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7084), + [anon_sym_SLASH_EQ] = ACTIONS(7084), + [anon_sym_PERCENT_EQ] = ACTIONS(7084), + [anon_sym_PLUS_EQ] = ACTIONS(7084), + [anon_sym_DASH_EQ] = ACTIONS(7084), + [anon_sym_LT_LT_EQ] = ACTIONS(7084), + [anon_sym_GT_GT_EQ] = ACTIONS(7084), + [anon_sym_AMP_EQ] = ACTIONS(7084), + [anon_sym_CARET_EQ] = ACTIONS(7084), + [anon_sym_PIPE_EQ] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7087), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7087), + [anon_sym_CARET] = ACTIONS(7087), + [anon_sym_EQ_EQ] = ACTIONS(7093), + [anon_sym_BANG_EQ] = ACTIONS(7093), + [anon_sym_LT] = ACTIONS(7096), + [anon_sym_GT] = ACTIONS(7096), + [anon_sym_LT_EQ] = ACTIONS(7099), + [anon_sym_GT_EQ] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7102), + [anon_sym_GT_GT] = ACTIONS(7102), + [anon_sym_PLUS] = ACTIONS(7075), + [anon_sym_DASH] = ACTIONS(7075), + [anon_sym_SLASH] = ACTIONS(7075), + [anon_sym_PERCENT] = ACTIONS(7075), + [anon_sym_DASH_DASH] = ACTIONS(4905), + [anon_sym_PLUS_PLUS] = ACTIONS(4905), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4908), [sym_comment] = ACTIONS(123), }, - [1512] = { + [1518] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(7079), + [anon_sym_COLON] = ACTIONS(7105), [anon_sym_QMARK] = ACTIONS(574), [anon_sym_STAR_EQ] = ACTIONS(576), [anon_sym_SLASH_EQ] = ACTIONS(576), @@ -69943,8 +70164,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1513] = { - [sym__expression] = STATE(1514), + [1519] = { + [sym__expression] = STATE(1520), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -69962,67 +70183,67 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6744), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2333), + [anon_sym_PLUS_PLUS] = ACTIONS(2333), + [anon_sym_sizeof] = ACTIONS(2335), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1514] = { + [1520] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4913), [anon_sym_COMMA] = ACTIONS(600), [anon_sym_RPAREN] = ACTIONS(600), [anon_sym_SEMI] = ACTIONS(600), [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_QMARK] = ACTIONS(7087), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7093), - [anon_sym_PIPE_PIPE] = ACTIONS(7096), - [anon_sym_AMP_AMP] = ACTIONS(7096), - [anon_sym_PIPE] = ACTIONS(7093), - [anon_sym_CARET] = ACTIONS(7093), - [anon_sym_EQ_EQ] = ACTIONS(7099), - [anon_sym_BANG_EQ] = ACTIONS(7099), - [anon_sym_LT] = ACTIONS(7102), - [anon_sym_GT] = ACTIONS(7102), - [anon_sym_LT_EQ] = ACTIONS(7105), - [anon_sym_GT_EQ] = ACTIONS(7105), - [anon_sym_LT_LT] = ACTIONS(7108), - [anon_sym_GT_GT] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_DASH_GT] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(7110), + [anon_sym_QMARK] = ACTIONS(7113), + [anon_sym_STAR_EQ] = ACTIONS(7116), + [anon_sym_SLASH_EQ] = ACTIONS(7116), + [anon_sym_PERCENT_EQ] = ACTIONS(7116), + [anon_sym_PLUS_EQ] = ACTIONS(7116), + [anon_sym_DASH_EQ] = ACTIONS(7116), + [anon_sym_LT_LT_EQ] = ACTIONS(7116), + [anon_sym_GT_GT_EQ] = ACTIONS(7116), + [anon_sym_AMP_EQ] = ACTIONS(7116), + [anon_sym_CARET_EQ] = ACTIONS(7116), + [anon_sym_PIPE_EQ] = ACTIONS(7116), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7125), + [anon_sym_BANG_EQ] = ACTIONS(7125), + [anon_sym_LT] = ACTIONS(7128), + [anon_sym_GT] = ACTIONS(7128), + [anon_sym_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_LT] = ACTIONS(7134), + [anon_sym_GT_GT] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7107), + [anon_sym_DASH] = ACTIONS(7107), + [anon_sym_SLASH] = ACTIONS(7107), + [anon_sym_PERCENT] = ACTIONS(7107), + [anon_sym_DASH_DASH] = ACTIONS(4949), + [anon_sym_PLUS_PLUS] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), [sym_comment] = ACTIONS(123), }, - [1515] = { + [1521] = { [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -70047,7 +70268,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1517), + [sym_type_name] = STATE(1523), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), @@ -70077,56 +70298,56 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(219), [sym_comment] = ACTIONS(123), }, - [1516] = { + [1522] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4968), [anon_sym_COMMA] = ACTIONS(710), [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_SEMI] = ACTIONS(710), [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(7111), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(7114), - [anon_sym_QMARK] = ACTIONS(7117), - [anon_sym_STAR_EQ] = ACTIONS(7120), - [anon_sym_SLASH_EQ] = ACTIONS(7120), - [anon_sym_PERCENT_EQ] = ACTIONS(7120), - [anon_sym_PLUS_EQ] = ACTIONS(7120), - [anon_sym_DASH_EQ] = ACTIONS(7120), - [anon_sym_LT_LT_EQ] = ACTIONS(7120), - [anon_sym_GT_GT_EQ] = ACTIONS(7120), - [anon_sym_AMP_EQ] = ACTIONS(7120), - [anon_sym_CARET_EQ] = ACTIONS(7120), - [anon_sym_PIPE_EQ] = ACTIONS(7120), - [anon_sym_AMP] = ACTIONS(7123), - [anon_sym_PIPE_PIPE] = ACTIONS(7126), - [anon_sym_AMP_AMP] = ACTIONS(7126), - [anon_sym_PIPE] = ACTIONS(7123), - [anon_sym_CARET] = ACTIONS(7123), - [anon_sym_EQ_EQ] = ACTIONS(7129), - [anon_sym_BANG_EQ] = ACTIONS(7129), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_LT_EQ] = ACTIONS(7135), - [anon_sym_GT_EQ] = ACTIONS(7135), - [anon_sym_LT_LT] = ACTIONS(7138), - [anon_sym_GT_GT] = ACTIONS(7138), - [anon_sym_PLUS] = ACTIONS(7111), - [anon_sym_DASH] = ACTIONS(7111), - [anon_sym_SLASH] = ACTIONS(7111), - [anon_sym_PERCENT] = ACTIONS(7111), - [anon_sym_DASH_DASH] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4987), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), + [anon_sym_STAR] = ACTIONS(7137), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(7140), + [anon_sym_QMARK] = ACTIONS(7143), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_PIPE_PIPE] = ACTIONS(7152), + [anon_sym_AMP_AMP] = ACTIONS(7152), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7155), + [anon_sym_BANG_EQ] = ACTIONS(7155), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7161), + [anon_sym_GT_EQ] = ACTIONS(7161), + [anon_sym_LT_LT] = ACTIONS(7164), + [anon_sym_GT_GT] = ACTIONS(7164), + [anon_sym_PLUS] = ACTIONS(7137), + [anon_sym_DASH] = ACTIONS(7137), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), [sym_comment] = ACTIONS(123), }, - [1517] = { - [anon_sym_RPAREN] = ACTIONS(7141), + [1523] = { + [anon_sym_RPAREN] = ACTIONS(7167), [sym_comment] = ACTIONS(123), }, - [1518] = { - [sym__expression] = STATE(1505), + [1524] = { + [sym__expression] = STATE(1511), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -70143,200 +70364,200 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_initializer_list] = STATE(340), + [sym_initializer_list] = STATE(344), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(7143), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(7146), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(7146), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(7149), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(7151), - [anon_sym_DASH] = ACTIONS(7151), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(7154), - [anon_sym_PLUS_PLUS] = ACTIONS(7154), - [anon_sym_sizeof] = ACTIONS(2320), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(7169), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(7172), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(7172), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(7177), + [anon_sym_DASH] = ACTIONS(7177), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(7180), + [anon_sym_PLUS_PLUS] = ACTIONS(7180), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1519] = { + [1525] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [anon_sym_STAR] = ACTIONS(7157), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_EQ] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7163), - [anon_sym_STAR_EQ] = ACTIONS(7166), - [anon_sym_SLASH_EQ] = ACTIONS(7166), - [anon_sym_PERCENT_EQ] = ACTIONS(7166), - [anon_sym_PLUS_EQ] = ACTIONS(7166), - [anon_sym_DASH_EQ] = ACTIONS(7166), - [anon_sym_LT_LT_EQ] = ACTIONS(7166), - [anon_sym_GT_GT_EQ] = ACTIONS(7166), - [anon_sym_AMP_EQ] = ACTIONS(7166), - [anon_sym_CARET_EQ] = ACTIONS(7166), - [anon_sym_PIPE_EQ] = ACTIONS(7166), - [anon_sym_AMP] = ACTIONS(7169), - [anon_sym_PIPE_PIPE] = ACTIONS(7172), - [anon_sym_AMP_AMP] = ACTIONS(7172), - [anon_sym_PIPE] = ACTIONS(7169), - [anon_sym_CARET] = ACTIONS(7169), - [anon_sym_EQ_EQ] = ACTIONS(7175), - [anon_sym_BANG_EQ] = ACTIONS(7175), - [anon_sym_LT] = ACTIONS(7178), - [anon_sym_GT] = ACTIONS(7178), - [anon_sym_LT_EQ] = ACTIONS(7181), - [anon_sym_GT_EQ] = ACTIONS(7181), - [anon_sym_LT_LT] = ACTIONS(7184), - [anon_sym_GT_GT] = ACTIONS(7184), - [anon_sym_PLUS] = ACTIONS(7157), - [anon_sym_DASH] = ACTIONS(7157), - [anon_sym_SLASH] = ACTIONS(7157), - [anon_sym_PERCENT] = ACTIONS(7157), - [anon_sym_DASH_DASH] = ACTIONS(5087), - [anon_sym_PLUS_PLUS] = ACTIONS(5087), - [anon_sym_DOT] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(7186), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7192), + [anon_sym_SLASH_EQ] = ACTIONS(7192), + [anon_sym_PERCENT_EQ] = ACTIONS(7192), + [anon_sym_PLUS_EQ] = ACTIONS(7192), + [anon_sym_DASH_EQ] = ACTIONS(7192), + [anon_sym_LT_LT_EQ] = ACTIONS(7192), + [anon_sym_GT_GT_EQ] = ACTIONS(7192), + [anon_sym_AMP_EQ] = ACTIONS(7192), + [anon_sym_CARET_EQ] = ACTIONS(7192), + [anon_sym_PIPE_EQ] = ACTIONS(7192), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7198), + [anon_sym_AMP_AMP] = ACTIONS(7198), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_LT] = ACTIONS(7204), + [anon_sym_GT] = ACTIONS(7204), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7210), + [anon_sym_GT_GT] = ACTIONS(7210), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_DASH_GT] = ACTIONS(5107), [sym_comment] = ACTIONS(123), }, - [1520] = { + [1526] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5093), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(7187), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(7190), - [anon_sym_QMARK] = ACTIONS(7193), - [anon_sym_STAR_EQ] = ACTIONS(7196), - [anon_sym_SLASH_EQ] = ACTIONS(7196), - [anon_sym_PERCENT_EQ] = ACTIONS(7196), - [anon_sym_PLUS_EQ] = ACTIONS(7196), - [anon_sym_DASH_EQ] = ACTIONS(7196), - [anon_sym_LT_LT_EQ] = ACTIONS(7196), - [anon_sym_GT_GT_EQ] = ACTIONS(7196), - [anon_sym_AMP_EQ] = ACTIONS(7196), - [anon_sym_CARET_EQ] = ACTIONS(7196), - [anon_sym_PIPE_EQ] = ACTIONS(7196), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7202), - [anon_sym_AMP_AMP] = ACTIONS(7202), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_LT] = ACTIONS(7208), - [anon_sym_GT] = ACTIONS(7208), - [anon_sym_LT_EQ] = ACTIONS(7211), - [anon_sym_GT_EQ] = ACTIONS(7211), - [anon_sym_LT_LT] = ACTIONS(7214), - [anon_sym_GT_GT] = ACTIONS(7214), - [anon_sym_PLUS] = ACTIONS(7187), - [anon_sym_DASH] = ACTIONS(7187), - [anon_sym_SLASH] = ACTIONS(7187), - [anon_sym_PERCENT] = ACTIONS(7187), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_PLUS_PLUS] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5132), - [anon_sym_DASH_GT] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5110), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(7213), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_EQ] = ACTIONS(7216), + [anon_sym_QMARK] = ACTIONS(7219), + [anon_sym_STAR_EQ] = ACTIONS(7222), + [anon_sym_SLASH_EQ] = ACTIONS(7222), + [anon_sym_PERCENT_EQ] = ACTIONS(7222), + [anon_sym_PLUS_EQ] = ACTIONS(7222), + [anon_sym_DASH_EQ] = ACTIONS(7222), + [anon_sym_LT_LT_EQ] = ACTIONS(7222), + [anon_sym_GT_GT_EQ] = ACTIONS(7222), + [anon_sym_AMP_EQ] = ACTIONS(7222), + [anon_sym_CARET_EQ] = ACTIONS(7222), + [anon_sym_PIPE_EQ] = ACTIONS(7222), + [anon_sym_AMP] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7228), + [anon_sym_AMP_AMP] = ACTIONS(7228), + [anon_sym_PIPE] = ACTIONS(7225), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_EQ_EQ] = ACTIONS(7231), + [anon_sym_BANG_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7234), + [anon_sym_GT] = ACTIONS(7234), + [anon_sym_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_LT] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7240), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7213), + [anon_sym_DASH_DASH] = ACTIONS(5146), + [anon_sym_PLUS_PLUS] = ACTIONS(5146), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5149), [sym_comment] = ACTIONS(123), }, - [1521] = { + [1527] = { [sym_argument_list] = STATE(72), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(7217), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(7220), - [anon_sym_QMARK] = ACTIONS(7223), - [anon_sym_STAR_EQ] = ACTIONS(7226), - [anon_sym_SLASH_EQ] = ACTIONS(7226), - [anon_sym_PERCENT_EQ] = ACTIONS(7226), - [anon_sym_PLUS_EQ] = ACTIONS(7226), - [anon_sym_DASH_EQ] = ACTIONS(7226), - [anon_sym_LT_LT_EQ] = ACTIONS(7226), - [anon_sym_GT_GT_EQ] = ACTIONS(7226), - [anon_sym_AMP_EQ] = ACTIONS(7226), - [anon_sym_CARET_EQ] = ACTIONS(7226), - [anon_sym_PIPE_EQ] = ACTIONS(7226), - [anon_sym_AMP] = ACTIONS(7229), - [anon_sym_PIPE_PIPE] = ACTIONS(7232), - [anon_sym_AMP_AMP] = ACTIONS(7232), - [anon_sym_PIPE] = ACTIONS(7229), - [anon_sym_CARET] = ACTIONS(7229), - [anon_sym_EQ_EQ] = ACTIONS(7235), - [anon_sym_BANG_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7238), - [anon_sym_GT] = ACTIONS(7238), - [anon_sym_LT_EQ] = ACTIONS(7241), - [anon_sym_GT_EQ] = ACTIONS(7241), - [anon_sym_LT_LT] = ACTIONS(7244), - [anon_sym_GT_GT] = ACTIONS(7244), - [anon_sym_PLUS] = ACTIONS(7217), - [anon_sym_DASH] = ACTIONS(7217), - [anon_sym_SLASH] = ACTIONS(7217), - [anon_sym_PERCENT] = ACTIONS(7217), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_DASH_GT] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7252), + [anon_sym_SLASH_EQ] = ACTIONS(7252), + [anon_sym_PERCENT_EQ] = ACTIONS(7252), + [anon_sym_PLUS_EQ] = ACTIONS(7252), + [anon_sym_DASH_EQ] = ACTIONS(7252), + [anon_sym_LT_LT_EQ] = ACTIONS(7252), + [anon_sym_GT_GT_EQ] = ACTIONS(7252), + [anon_sym_AMP_EQ] = ACTIONS(7252), + [anon_sym_CARET_EQ] = ACTIONS(7252), + [anon_sym_PIPE_EQ] = ACTIONS(7252), + [anon_sym_AMP] = ACTIONS(7255), + [anon_sym_PIPE_PIPE] = ACTIONS(7258), + [anon_sym_AMP_AMP] = ACTIONS(7258), + [anon_sym_PIPE] = ACTIONS(7255), + [anon_sym_CARET] = ACTIONS(7255), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_LT] = ACTIONS(7264), + [anon_sym_GT] = ACTIONS(7264), + [anon_sym_LT_EQ] = ACTIONS(7267), + [anon_sym_GT_EQ] = ACTIONS(7267), + [anon_sym_LT_LT] = ACTIONS(7270), + [anon_sym_GT_GT] = ACTIONS(7270), + [anon_sym_PLUS] = ACTIONS(7243), + [anon_sym_DASH] = ACTIONS(7243), + [anon_sym_SLASH] = ACTIONS(7243), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_DASH_DASH] = ACTIONS(5188), + [anon_sym_PLUS_PLUS] = ACTIONS(5188), + [anon_sym_DOT] = ACTIONS(5191), + [anon_sym_DASH_GT] = ACTIONS(5191), [sym_comment] = ACTIONS(123), }, - [1522] = { - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_COMMA] = ACTIONS(6041), + [1528] = { + [anon_sym_LPAREN] = ACTIONS(6059), + [anon_sym_COMMA] = ACTIONS(6059), [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_SEMI] = ACTIONS(6041), + [anon_sym_SEMI] = ACTIONS(6059), [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(6041), - [anon_sym_EQ] = ACTIONS(6044), - [anon_sym_COLON] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_COLON] = ACTIONS(821), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), [anon_sym_SLASH_EQ] = ACTIONS(375), @@ -70371,11 +70592,11 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(375), [sym_comment] = ACTIONS(123), }, - [1523] = { - [sym__declarator] = STATE(268), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), + [1529] = { + [sym__declarator] = STATE(271), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), [sym_type_qualifier] = STATE(199), [sym__type_specifier] = STATE(200), [sym_sized_type_specifier] = STATE(44), @@ -70400,13 +70621,13 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(448), + [sym_type_name] = STATE(452), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), [aux_sym_array_declarator_repeat1] = STATE(204), [aux_sym_sized_type_specifier_repeat1] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(6725), - [anon_sym_STAR] = ACTIONS(6727), + [anon_sym_LPAREN] = ACTIONS(6749), + [anon_sym_STAR] = ACTIONS(6751), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), @@ -70427,15 +70648,15 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6039), + [sym_identifier] = ACTIONS(6753), [sym_comment] = ACTIONS(123), }, - [1524] = { - [sym__declarator] = STATE(265), - [sym_pointer_declarator] = STATE(240), - [sym_function_declarator] = STATE(240), - [sym_array_declarator] = STATE(240), - [sym__expression] = STATE(403), + [1530] = { + [sym__declarator] = STATE(266), + [sym_pointer_declarator] = STATE(243), + [sym_function_declarator] = STATE(243), + [sym_array_declarator] = STATE(243), + [sym__expression] = STATE(407), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -70453,8 +70674,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(6725), - [anon_sym_STAR] = ACTIONS(6727), + [anon_sym_LPAREN] = ACTIONS(6749), + [anon_sym_STAR] = ACTIONS(6751), [anon_sym_AMP] = ACTIONS(207), [anon_sym_BANG] = ACTIONS(209), [anon_sym_TILDE] = ACTIONS(211), @@ -70466,10 +70687,51 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6109), + [sym_identifier] = ACTIONS(6127), [sym_comment] = ACTIONS(123), }, - [1525] = { + [1531] = { + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(6134), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(383), + [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(383), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [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(123), + }, + [1532] = { [sym__declaration_specifiers] = STATE(229), [sym_storage_class_specifier] = STATE(14), [sym_type_qualifier] = STATE(14), @@ -70482,7 +70744,7 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(44), [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_sized_type_specifier_repeat1] = STATE(49), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), [anon_sym_extern] = ACTIONS(147), [anon_sym_static] = ACTIONS(147), [anon_sym_typedef] = ACTIONS(147), @@ -70498,38 +70760,42 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(155), [anon_sym_struct] = ACTIONS(157), [anon_sym_union] = ACTIONS(159), - [sym_identifier] = ACTIONS(7249), + [sym_identifier] = ACTIONS(7275), [sym_comment] = ACTIONS(123), }, - [1526] = { - [anon_sym_COMMA] = ACTIONS(7251), - [anon_sym_RPAREN] = ACTIONS(7251), + [1533] = { + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), [sym_comment] = ACTIONS(123), }, - [1527] = { + [1534] = { [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_COMMA] = ACTIONS(7254), - [anon_sym_RPAREN] = ACTIONS(7254), + [anon_sym_COMMA] = ACTIONS(7280), + [anon_sym_RPAREN] = ACTIONS(7280), [anon_sym_STAR] = ACTIONS(739), [anon_sym_LBRACK] = ACTIONS(739), [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1528] = { - [sym__declarator] = STATE(268), - [sym__abstract_declarator] = STATE(269), - [sym_pointer_declarator] = STATE(240), + [1535] = { + [sym__declaration_specifiers] = STATE(229), + [sym__declarator] = STATE(271), + [sym__abstract_declarator] = STATE(272), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_type_qualifier] = STATE(199), - [sym__type_specifier] = STATE(200), + [sym_storage_class_specifier] = STATE(14), + [sym_type_qualifier] = STATE(1356), + [sym__type_specifier] = STATE(1422), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), [sym_union_specifier] = STATE(44), + [sym_parameter_type_list] = STATE(273), + [sym_parameter_declaration] = STATE(227), [sym__expression] = STATE(201), [sym_comma_expression] = STATE(202), [sym_conditional_expression] = STATE(34), @@ -70548,17 +70814,26 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(34), [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), - [sym_type_name] = STATE(1311), + [sym_type_name] = STATE(1315), [sym_concatenated_string] = STATE(34), [sym_macro_type_specifier] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(48), [aux_sym_array_declarator_repeat1] = STATE(204), - [aux_sym_sized_type_specifier_repeat1] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6037), + [aux_sym_sized_type_specifier_repeat1] = STATE(49), + [anon_sym_LPAREN] = ACTIONS(6053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(6055), [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_static] = ACTIONS(147), + [anon_sym_typedef] = ACTIONS(147), + [anon_sym_auto] = ACTIONS(147), + [anon_sym_register] = ACTIONS(147), [anon_sym_const] = ACTIONS(149), [anon_sym_restrict] = ACTIONS(149), [anon_sym_volatile] = ACTIONS(149), + [sym_function_specifier] = ACTIONS(151), [anon_sym_unsigned] = ACTIONS(153), [anon_sym_long] = ACTIONS(153), [anon_sym_short] = ACTIONS(153), @@ -70576,30 +70851,30 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6039), + [sym_identifier] = ACTIONS(6057), [sym_comment] = ACTIONS(123), }, - [1529] = { - [aux_sym_preproc_params_repeat1] = STATE(1033), + [1536] = { + [aux_sym_preproc_params_repeat1] = STATE(1037), [aux_sym_parameter_type_list_repeat1] = STATE(233), - [anon_sym_COMMA] = ACTIONS(7257), - [anon_sym_RPAREN] = ACTIONS(7259), + [anon_sym_COMMA] = ACTIONS(7283), + [anon_sym_RPAREN] = ACTIONS(7285), [sym_comment] = ACTIONS(123), }, - [1530] = { - [anon_sym_LF] = ACTIONS(7262), - [anon_sym_LPAREN] = ACTIONS(7265), - [anon_sym_COMMA] = ACTIONS(7265), - [anon_sym_RPAREN] = ACTIONS(7265), - [sym_preproc_arg] = ACTIONS(2157), - [anon_sym_SEMI] = ACTIONS(7269), - [anon_sym_LBRACE] = ACTIONS(847), + [1537] = { + [anon_sym_LF] = ACTIONS(7288), + [anon_sym_LPAREN] = ACTIONS(7291), + [anon_sym_COMMA] = ACTIONS(7291), + [anon_sym_RPAREN] = ACTIONS(7291), + [sym_preproc_arg] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(7296), + [anon_sym_LBRACE] = ACTIONS(853), [anon_sym_RBRACE] = ACTIONS(640), [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(7265), + [anon_sym_LBRACK] = ACTIONS(7291), [anon_sym_RBRACK] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(7272), - [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7299), + [anon_sym_COLON] = ACTIONS(7296), [anon_sym_QMARK] = ACTIONS(640), [anon_sym_STAR_EQ] = ACTIONS(640), [anon_sym_SLASH_EQ] = ACTIONS(640), @@ -70634,16 +70909,16 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(640), [sym_comment] = ACTIONS(123), }, - [1531] = { - [sym__declarator] = STATE(265), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1538] = { + [sym__declarator] = STATE(266), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym__expression] = STATE(1306), + [sym__expression] = STATE(1310), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -70661,32 +70936,32 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(7275), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(7302), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_sizeof] = ACTIONS(2300), [sym_number_literal] = ACTIONS(193), [sym_char_literal] = ACTIONS(193), [sym_string_literal] = ACTIONS(195), - [sym_identifier] = ACTIONS(6109), + [sym_identifier] = ACTIONS(6127), [sym_comment] = ACTIONS(123), }, - [1532] = { - [aux_sym_preproc_params_repeat1] = STATE(1033), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(7278), - [anon_sym_RPAREN] = ACTIONS(7282), + [1539] = { + [aux_sym_preproc_params_repeat1] = STATE(1037), + [anon_sym_LPAREN] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(7305), + [anon_sym_RPAREN] = ACTIONS(7309), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(380), - [anon_sym_LBRACK] = ACTIONS(6116), + [anon_sym_LBRACK] = ACTIONS(6134), [anon_sym_EQ] = ACTIONS(383), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_STAR_EQ] = ACTIONS(375), @@ -70723,8 +70998,8 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(387), [sym_comment] = ACTIONS(123), }, - [1533] = { - [sym__type_specifier] = STATE(1543), + [1540] = { + [sym__type_specifier] = STATE(1549), [sym_sized_type_specifier] = STATE(44), [sym_enum_specifier] = STATE(44), [sym_struct_specifier] = STATE(44), @@ -70740,71 +71015,71 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(409), [sym_comment] = ACTIONS(123), }, - [1534] = { - [sym__declarator] = STATE(1541), - [sym__abstract_declarator] = STATE(1542), - [sym_pointer_declarator] = STATE(240), + [1541] = { + [sym__declarator] = STATE(1548), + [sym__abstract_declarator] = STATE(1423), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_init_declarator] = STATE(466), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7290), + [sym_init_declarator] = STATE(470), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(6138), + [anon_sym_STAR] = ACTIONS(7314), [anon_sym_LBRACK] = ACTIONS(726), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1535] = { + [1542] = { [sym_argument_list] = STATE(72), - [aux_sym_for_statement_repeat1] = STATE(989), + [aux_sym_for_statement_repeat1] = STATE(993), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(7292), - [anon_sym_RPAREN] = ACTIONS(7294), - [anon_sym_SEMI] = ACTIONS(5919), - [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(7316), + [anon_sym_RPAREN] = ACTIONS(7318), + [anon_sym_SEMI] = ACTIONS(5937), + [anon_sym_STAR] = ACTIONS(4584), [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(4569), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_STAR_EQ] = ACTIONS(4573), - [anon_sym_SLASH_EQ] = ACTIONS(4573), - [anon_sym_PERCENT_EQ] = ACTIONS(4573), - [anon_sym_PLUS_EQ] = ACTIONS(4573), - [anon_sym_DASH_EQ] = ACTIONS(4573), - [anon_sym_LT_LT_EQ] = ACTIONS(4573), - [anon_sym_GT_GT_EQ] = ACTIONS(4573), - [anon_sym_AMP_EQ] = ACTIONS(4573), - [anon_sym_CARET_EQ] = ACTIONS(4573), - [anon_sym_PIPE_EQ] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_PIPE_PIPE] = ACTIONS(4577), - [anon_sym_AMP_AMP] = ACTIONS(4577), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(4575), - [anon_sym_EQ_EQ] = ACTIONS(4579), - [anon_sym_BANG_EQ] = ACTIONS(4579), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4581), - [anon_sym_LT_EQ] = ACTIONS(4583), - [anon_sym_GT_EQ] = ACTIONS(4583), - [anon_sym_LT_LT] = ACTIONS(4585), - [anon_sym_GT_GT] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4590), + [anon_sym_SLASH_EQ] = ACTIONS(4590), + [anon_sym_PERCENT_EQ] = ACTIONS(4590), + [anon_sym_PLUS_EQ] = ACTIONS(4590), + [anon_sym_DASH_EQ] = ACTIONS(4590), + [anon_sym_LT_LT_EQ] = ACTIONS(4590), + [anon_sym_GT_GT_EQ] = ACTIONS(4590), + [anon_sym_AMP_EQ] = ACTIONS(4590), + [anon_sym_CARET_EQ] = ACTIONS(4590), + [anon_sym_PIPE_EQ] = ACTIONS(4590), + [anon_sym_AMP] = ACTIONS(4592), + [anon_sym_PIPE_PIPE] = ACTIONS(4594), + [anon_sym_AMP_AMP] = ACTIONS(4594), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_CARET] = ACTIONS(4592), + [anon_sym_EQ_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_LT] = ACTIONS(4598), + [anon_sym_GT] = ACTIONS(4598), + [anon_sym_LT_EQ] = ACTIONS(4600), + [anon_sym_GT_EQ] = ACTIONS(4600), + [anon_sym_LT_LT] = ACTIONS(4602), + [anon_sym_GT_GT] = ACTIONS(4602), + [anon_sym_PLUS] = ACTIONS(4584), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_SLASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), [anon_sym_DASH_DASH] = ACTIONS(465), [anon_sym_PLUS_PLUS] = ACTIONS(465), [anon_sym_DOT] = ACTIONS(467), [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1536] = { - [sym__expression] = STATE(1539), - [sym_comma_expression] = STATE(399), + [1543] = { + [sym__expression] = STATE(1546), + [sym_comma_expression] = STATE(403), [sym_conditional_expression] = STATE(34), [sym_assignment_expression] = STATE(34), [sym_pointer_expression] = STATE(34), @@ -70838,9 +71113,9 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(123), }, - [1537] = { + [1544] = { [sym_compound_statement] = STATE(42), - [sym__statement] = STATE(1538), + [sym__statement] = STATE(1545), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), [sym_if_statement] = STATE(42), @@ -70872,156 +71147,156 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(34), [sym_parenthesized_expression] = STATE(34), [sym_concatenated_string] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(1469), - [anon_sym_POUNDinclude] = ACTIONS(1471), - [anon_sym_POUNDdefine] = ACTIONS(1471), - [anon_sym_LF] = ACTIONS(4345), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_COMMA] = ACTIONS(4345), - [anon_sym_RPAREN] = ACTIONS(4345), - [anon_sym_POUNDif] = ACTIONS(1471), - [anon_sym_POUNDendif] = ACTIONS(1471), - [anon_sym_POUNDifdef] = ACTIONS(1471), - [anon_sym_POUNDifndef] = ACTIONS(1471), - [anon_sym_POUNDelse] = ACTIONS(1471), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_RBRACE] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4345), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_RBRACK] = ACTIONS(4345), - [anon_sym_EQ] = ACTIONS(4370), - [anon_sym_typedef] = 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_COLON] = ACTIONS(4345), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_goto] = ACTIONS(2456), - [anon_sym_QMARK] = ACTIONS(4345), - [anon_sym_STAR_EQ] = ACTIONS(4345), - [anon_sym_SLASH_EQ] = ACTIONS(4345), - [anon_sym_PERCENT_EQ] = ACTIONS(4345), - [anon_sym_PLUS_EQ] = ACTIONS(4345), - [anon_sym_DASH_EQ] = ACTIONS(4345), - [anon_sym_LT_LT_EQ] = ACTIONS(4345), - [anon_sym_GT_GT_EQ] = ACTIONS(4345), - [anon_sym_AMP_EQ] = ACTIONS(4345), - [anon_sym_CARET_EQ] = ACTIONS(4345), - [anon_sym_PIPE_EQ] = ACTIONS(4345), - [anon_sym_AMP] = ACTIONS(4365), - [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_AMP_AMP] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(4373), - [anon_sym_PIPE] = ACTIONS(4370), - [anon_sym_CARET] = ACTIONS(4370), - [anon_sym_TILDE] = ACTIONS(4376), - [anon_sym_EQ_EQ] = ACTIONS(4345), - [anon_sym_BANG_EQ] = ACTIONS(4345), - [anon_sym_LT] = ACTIONS(4370), - [anon_sym_GT] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4345), - [anon_sym_GT_EQ] = ACTIONS(4345), - [anon_sym_LT_LT] = ACTIONS(4370), - [anon_sym_GT_GT] = ACTIONS(4370), - [anon_sym_PLUS] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_SLASH] = ACTIONS(4370), - [anon_sym_PERCENT] = ACTIONS(4370), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(4389), - [anon_sym_DOT] = ACTIONS(4345), - [anon_sym_DASH_GT] = ACTIONS(4345), - [sym_number_literal] = ACTIONS(4392), - [sym_char_literal] = ACTIONS(4392), - [sym_string_literal] = ACTIONS(4395), - [sym_identifier] = ACTIONS(4398), - [sym_comment] = ACTIONS(123), - }, - [1538] = { - [ts_builtin_sym_end] = ACTIONS(7296), - [anon_sym_POUNDinclude] = ACTIONS(7300), - [anon_sym_POUNDdefine] = ACTIONS(7300), - [anon_sym_LPAREN] = ACTIONS(7296), - [anon_sym_POUNDif] = ACTIONS(7300), - [anon_sym_POUNDendif] = ACTIONS(7300), - [anon_sym_POUNDifdef] = ACTIONS(7300), - [anon_sym_POUNDifndef] = ACTIONS(7300), - [anon_sym_POUNDelse] = ACTIONS(7300), - [sym_preproc_directive] = ACTIONS(7304), - [anon_sym_SEMI] = ACTIONS(7296), - [anon_sym_extern] = ACTIONS(7300), - [anon_sym_LBRACE] = ACTIONS(7296), - [anon_sym_RBRACE] = ACTIONS(7296), - [anon_sym_STAR] = ACTIONS(7296), - [anon_sym_static] = ACTIONS(7300), - [anon_sym_typedef] = ACTIONS(7300), - [anon_sym_auto] = ACTIONS(7300), - [anon_sym_register] = ACTIONS(7300), - [anon_sym_const] = ACTIONS(7300), - [anon_sym_restrict] = ACTIONS(7300), - [anon_sym_volatile] = ACTIONS(7300), - [sym_function_specifier] = ACTIONS(7300), - [anon_sym_unsigned] = ACTIONS(7300), - [anon_sym_long] = ACTIONS(7300), - [anon_sym_short] = ACTIONS(7300), - [anon_sym_enum] = ACTIONS(7300), - [anon_sym_struct] = ACTIONS(7300), - [anon_sym_union] = ACTIONS(7300), - [anon_sym_if] = ACTIONS(7300), - [anon_sym_else] = ACTIONS(7308), - [anon_sym_switch] = ACTIONS(7300), - [anon_sym_case] = ACTIONS(7300), - [anon_sym_default] = ACTIONS(7300), - [anon_sym_while] = ACTIONS(7300), - [anon_sym_do] = ACTIONS(7300), - [anon_sym_for] = ACTIONS(7300), - [anon_sym_return] = ACTIONS(7300), - [anon_sym_break] = ACTIONS(7300), - [anon_sym_continue] = ACTIONS(7300), - [anon_sym_goto] = ACTIONS(7300), - [anon_sym_AMP] = ACTIONS(7296), - [anon_sym_BANG] = ACTIONS(7296), - [anon_sym_TILDE] = ACTIONS(7296), - [anon_sym_PLUS] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7300), - [anon_sym_DASH_DASH] = ACTIONS(7296), - [anon_sym_PLUS_PLUS] = ACTIONS(7296), - [anon_sym_sizeof] = ACTIONS(7300), - [sym_number_literal] = ACTIONS(7300), - [sym_char_literal] = ACTIONS(7300), - [sym_string_literal] = ACTIONS(7296), - [sym_identifier] = ACTIONS(7304), - [sym_comment] = ACTIONS(123), - }, - [1539] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [anon_sym_POUNDinclude] = ACTIONS(1486), + [anon_sym_POUNDdefine] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RPAREN] = ACTIONS(4362), + [anon_sym_POUNDif] = ACTIONS(1486), + [anon_sym_POUNDendif] = ACTIONS(1486), + [anon_sym_POUNDifdef] = ACTIONS(1486), + [anon_sym_POUNDifndef] = ACTIONS(1486), + [anon_sym_POUNDelse] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(4370), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [sym_function_specifier] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(4362), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_goto] = ACTIONS(2473), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_STAR_EQ] = ACTIONS(4362), + [anon_sym_SLASH_EQ] = ACTIONS(4362), + [anon_sym_PERCENT_EQ] = ACTIONS(4362), + [anon_sym_PLUS_EQ] = ACTIONS(4362), + [anon_sym_DASH_EQ] = ACTIONS(4362), + [anon_sym_LT_LT_EQ] = ACTIONS(4362), + [anon_sym_GT_GT_EQ] = ACTIONS(4362), + [anon_sym_AMP_EQ] = ACTIONS(4362), + [anon_sym_CARET_EQ] = ACTIONS(4362), + [anon_sym_PIPE_EQ] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4382), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_CARET] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_LT_EQ] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_SLASH] = ACTIONS(4387), + [anon_sym_PERCENT] = ACTIONS(4387), + [anon_sym_DASH_DASH] = ACTIONS(4401), + [anon_sym_PLUS_PLUS] = ACTIONS(4401), + [anon_sym_sizeof] = ACTIONS(4406), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(4362), + [sym_number_literal] = ACTIONS(4409), + [sym_char_literal] = ACTIONS(4409), + [sym_string_literal] = ACTIONS(4412), + [sym_identifier] = ACTIONS(4415), + [sym_comment] = ACTIONS(123), + }, + [1545] = { + [ts_builtin_sym_end] = ACTIONS(7320), + [anon_sym_POUNDinclude] = ACTIONS(7324), + [anon_sym_POUNDdefine] = ACTIONS(7324), + [anon_sym_LPAREN] = ACTIONS(7320), + [anon_sym_POUNDif] = ACTIONS(7324), + [anon_sym_POUNDendif] = ACTIONS(7324), + [anon_sym_POUNDifdef] = ACTIONS(7324), + [anon_sym_POUNDifndef] = ACTIONS(7324), + [anon_sym_POUNDelse] = ACTIONS(7324), + [sym_preproc_directive] = ACTIONS(7328), + [anon_sym_SEMI] = ACTIONS(7320), + [anon_sym_extern] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7320), + [anon_sym_RBRACE] = ACTIONS(7320), + [anon_sym_STAR] = ACTIONS(7320), + [anon_sym_static] = ACTIONS(7324), + [anon_sym_typedef] = ACTIONS(7324), + [anon_sym_auto] = ACTIONS(7324), + [anon_sym_register] = ACTIONS(7324), + [anon_sym_const] = ACTIONS(7324), + [anon_sym_restrict] = ACTIONS(7324), + [anon_sym_volatile] = ACTIONS(7324), + [sym_function_specifier] = ACTIONS(7324), + [anon_sym_unsigned] = ACTIONS(7324), + [anon_sym_long] = ACTIONS(7324), + [anon_sym_short] = ACTIONS(7324), + [anon_sym_enum] = ACTIONS(7324), + [anon_sym_struct] = ACTIONS(7324), + [anon_sym_union] = ACTIONS(7324), + [anon_sym_if] = ACTIONS(7324), + [anon_sym_else] = ACTIONS(7332), + [anon_sym_switch] = ACTIONS(7324), + [anon_sym_case] = ACTIONS(7324), + [anon_sym_default] = ACTIONS(7324), + [anon_sym_while] = ACTIONS(7324), + [anon_sym_do] = ACTIONS(7324), + [anon_sym_for] = ACTIONS(7324), + [anon_sym_return] = ACTIONS(7324), + [anon_sym_break] = ACTIONS(7324), + [anon_sym_continue] = ACTIONS(7324), + [anon_sym_goto] = ACTIONS(7324), + [anon_sym_AMP] = ACTIONS(7320), + [anon_sym_BANG] = ACTIONS(7320), + [anon_sym_TILDE] = ACTIONS(7320), + [anon_sym_PLUS] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7324), + [anon_sym_DASH_DASH] = ACTIONS(7320), + [anon_sym_PLUS_PLUS] = ACTIONS(7320), + [anon_sym_sizeof] = ACTIONS(7324), + [sym_number_literal] = ACTIONS(7324), + [sym_char_literal] = ACTIONS(7324), + [sym_string_literal] = ACTIONS(7320), + [sym_identifier] = ACTIONS(7328), + [sym_comment] = ACTIONS(123), + }, + [1546] = { [sym_argument_list] = STATE(72), [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_COMMA] = ACTIONS(7313), - [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_COMMA] = ACTIONS(7337), + [anon_sym_RPAREN] = ACTIONS(5279), [anon_sym_STAR] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(652), @@ -71059,66 +71334,59 @@ static unsigned short ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(467), [sym_comment] = ACTIONS(123), }, - [1540] = { - [sym__declarator] = STATE(1336), - [sym__abstract_declarator] = STATE(266), - [sym_pointer_declarator] = STATE(240), + [1547] = { + [sym__declarator] = STATE(1340), + [sym__abstract_declarator] = STATE(267), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(7290), - [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(3992), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(7314), + [anon_sym_LBRACK] = ACTIONS(2921), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1541] = { - [aux_sym_declaration_repeat1] = STATE(469), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(7316), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), - [sym_comment] = ACTIONS(123), - }, - [1542] = { - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(7319), - [anon_sym_LBRACK] = ACTIONS(759), + [1548] = { + [aux_sym_declaration_repeat1] = STATE(473), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(7340), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, - [1543] = { - [sym__declarator] = STATE(1544), - [sym__abstract_declarator] = STATE(274), - [sym_pointer_declarator] = STATE(240), + [1549] = { + [sym__declarator] = STATE(1550), + [sym__abstract_declarator] = STATE(281), + [sym_pointer_declarator] = STATE(243), [sym_abstract_pointer_declarator] = STATE(213), - [sym_function_declarator] = STATE(240), + [sym_function_declarator] = STATE(243), [sym_abstract_function_declarator] = STATE(213), - [sym_array_declarator] = STATE(240), + [sym_array_declarator] = STATE(243), [sym_abstract_array_declarator] = STATE(213), - [sym_init_declarator] = STATE(484), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(7290), + [sym_init_declarator] = STATE(488), + [anon_sym_LPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(7314), [anon_sym_LBRACK] = ACTIONS(726), [sym_identifier] = ACTIONS(423), [sym_comment] = ACTIONS(123), }, - [1544] = { - [aux_sym_declaration_repeat1] = STATE(485), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(1253), + [1550] = { + [aux_sym_declaration_repeat1] = STATE(489), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(5395), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(1268), [sym_comment] = ACTIONS(123), }, }; @@ -71128,64 +71396,64 @@ 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(1099), - [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1100), - [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1101), - [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1102), + [7] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1103), + [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1104), + [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1105), + [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1106), [15] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(5), - [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1103), + [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1107), [19] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(6), - [21] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(764), + [21] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(768), [23] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(7), - [25] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1104), + [25] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1108), [27] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(9), - [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1105), - [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1106), - [33] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1107), - [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1108), - [37] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1109), - [39] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1110), - [41] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1111), + [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1109), + [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1110), + [33] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1111), + [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1112), + [37] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1113), + [39] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1114), + [41] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1115), [43] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(12), [45] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(13), - [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1112), - [49] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1113), + [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1116), + [49] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1117), [51] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(16), [53] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(17), [55] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(18), - [57] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1114), - [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1115), - [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1116), - [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1117), - [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1118), - [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1119), - [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1120), + [57] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1118), + [59] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1119), + [61] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1120), + [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1121), + [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1122), + [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1123), + [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1124), [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(24), - [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1121), + [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1125), [75] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(26), [77] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(27), [79] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(28), [81] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(29), - [83] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1122), - [85] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1123), - [87] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1124), - [89] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1125), - [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1126), - [93] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1127), - [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1128), - [97] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1129), - [99] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1130), - [101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1130), - [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1131), - [105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1132), - [107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1133), - [109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1134), - [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1135), - [113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1136), - [115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(967), - [117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(947), - [119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1137), - [121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(1138), + [83] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1126), + [85] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1127), + [87] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1128), + [89] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1129), + [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1130), + [93] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1131), + [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1132), + [97] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1133), + [99] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1134), + [101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1134), + [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1135), + [105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1136), + [107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1137), + [109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1138), + [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1139), + [113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(1140), + [115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(971), + [117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(951), + [119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(1141), + [121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(1142), [123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), [125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_translation_unit, 0), [127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2), @@ -71224,9 +71492,9 @@ static TSParseActionEntry ts_parse_actions[] = { [193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(34), [195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(35), [197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(36), - [199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), - [201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), - [203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1021), + [199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1044), + [203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1025), [205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), [207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), [209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), @@ -71235,32 +71503,32 @@ static TSParseActionEntry ts_parse_actions[] = { [215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), [217] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(159), [219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), - [221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(941), - [223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), - [225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), - [227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), - [229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(945), - [231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), - [235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), - [237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(949), - [241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), - [243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(761), + [221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(949), + [231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), + [235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(951), + [237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), + [239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(953), + [241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(766), + [243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(765), [245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), [247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), [249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), [251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), - [253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), + [253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), [255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), - [257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), - [259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(665), - [261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), - [263] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), - [265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), - [267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), - [269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), - [271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(671), + [257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), + [261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), + [263] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), + [265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(672), + [267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(673), + [269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(674), + [271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(675), [273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(74), [275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_qualifier, 1), [277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_qualifier, 1), @@ -71270,14 +71538,14 @@ static TSParseActionEntry ts_parse_actions[] = { [285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), [287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), [289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), - [291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [293] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(432), - [295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(424), - [299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), - [301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(279), - [303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), + [293] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(436), + [295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(428), + [299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), + [301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(283), + [303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), [307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), [309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(87), [311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), @@ -71285,37 +71553,37 @@ static TSParseActionEntry ts_parse_actions[] = { [315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(90), [317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(90), [319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(91), - [321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), - [323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), - [325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533), - [327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), - [333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), - [335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), - [337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(539), - [339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), - [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), - [343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), - [345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), - [349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304), - [351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(305), - [353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), - [355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(306), - [357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), - [359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), - [361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), - [363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), + [321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), + [325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), + [327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), + [329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(539), + [331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(540), + [333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(541), + [335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(542), + [337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(543), + [339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), + [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), + [343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), + [345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(306), + [347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), + [349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), + [351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(309), + [353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), + [355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), + [359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), + [361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), [365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), [367] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), [369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), - [371] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(275), + [371] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(276), [375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), [377] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), [380] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), [383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), - [385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), [387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__type_specifier, 1), [389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), [391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), @@ -71331,9 +71599,9 @@ static TSParseActionEntry ts_parse_actions[] = { [411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), [413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), [415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), - [417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), - [421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), + [417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), [423] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(240), [425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_specifier, 1), [427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type_specifier, 1), @@ -71405,7 +71673,7 @@ static TSParseActionEntry ts_parse_actions[] = { [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), [564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), [568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(93), [570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), [572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), @@ -71423,7 +71691,7 @@ static TSParseActionEntry ts_parse_actions[] = { [596] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(105), [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), [604] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(127), [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), [608] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(129), @@ -71486,2162 +71754,2169 @@ static TSParseActionEntry ts_parse_actions[] = { [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 1), [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(396), - [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), + [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(400), + [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), [734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(51), - [736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(275), + [736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(276), [739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), [743] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 2), [745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 2), [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 2), - [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), - [751] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(259), - [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), - [755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), - [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 3), - [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), - [761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), - [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), - [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), - [767] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(216), - [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(217), - [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), - [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), - [775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(220), - [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), - [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), - [781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), - [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), - [785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 6), - [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), - [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), - [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 3), - [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), - [795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), - [797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), - [799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), - [801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), - [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), - [805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 2), - [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), - [809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), - [813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 4), - [815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), - [817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), - [819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), - [821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), + [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), + [751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), + [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), + [755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(260), + [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), + [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), + [761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_name, 3), + [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), + [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 1), + [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), + [769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(216), + [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(217), + [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), + [775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 3), + [777] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(220), + [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 4), + [781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), + [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 5), + [785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), + [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 6), + [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), + [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), + [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 3), + [795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), + [797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), + [799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), + [801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), + [805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), + [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 2), + [809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), + [811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), + [815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 4), + [817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), + [819] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(270), + [821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), - [827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(245), - [829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(246), - [831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), - [835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(249), - [837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), - [839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), - [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), - [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), - [845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 6), - [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), - [849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(258), - [851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), - [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), - [855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(263), - [857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), - [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), - [861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(271), - [863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(270), - [865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), - [867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), - [869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), - [871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(277), - [873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), - [875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), - [877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), - [881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), - [883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), - [885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 4), - [889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 4), - [891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), - [893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), - [895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), - [897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), - [903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), - [905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 5), - [907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 5), - [909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), - [915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), - [919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), - [923] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 3), - [925] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), - [927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), - [935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), - [937] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), - [939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), - [945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), - [947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), - [949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), - [951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), - [953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), - [955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(309), - [957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), - [959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(311), - [961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(310), - [963] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(312), - [965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), - [967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(314), - [969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(315), - [971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(316), - [973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), - [975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), - [977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), - [979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(319), - [981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(320), - [983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), - [985] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 7), - [987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), - [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), - [991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), - [993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), - [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), - [997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(302), - [999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), - [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(303), - [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [1005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), - [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), - [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(344), - [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), - [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), - [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(347), - [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), - [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(348), - [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), - [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), - [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), - [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), - [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), - [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), - [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), - [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(392), - [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(391), - [1039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), - [1041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), - [1043] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(360), - [1045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), - [1047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [1049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), - [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), - [1053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), - [1055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(365), - [1057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(366), - [1059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), - [1061] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368), - [1063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), - [1065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(369), - [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(370), - [1069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), - [1071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), - [1073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), - [1075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), - [1077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [1079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), - [1081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [1083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [1085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), - [1087] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), - [1089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), - [1091] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), - [1093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), - [1095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), - [1097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), - [1099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [1101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(343), - [1103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(345), - [1105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), - [1107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), - [1109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), - [1111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), - [1113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), - [1115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), - [1117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), - [1119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), - [1121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), - [1123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), - [1125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), - [1127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), - [1129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), - [1131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407), - [1133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), - [1135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 3), - [1137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), - [1139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), - [1141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), - [1143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), - [1145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), - [1147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), - [1149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), - [1151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), - [1153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3), - [1155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3), - [1157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [1159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), - [1161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), - [1163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), - [1165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426), - [1167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), - [1169] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), - [1171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [1173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), - [1175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), - [1177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), - [1179] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3), - [1181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), - [1183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), - [1185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [1187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), - [1189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), - [1191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [1193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [1195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), - [1197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), - [1199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [1201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), - [1203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), - [1205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 6), - [1207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 6), - [1209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 3), - [1211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), - [1213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), - [1215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), - [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), - [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), - [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), - [1225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), - [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), - [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), - [1231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), - [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), - [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), - [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), - [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(88), - [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), - [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), - [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), - [1247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), - [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), - [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), - [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), - [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), - [1261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), - [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), - [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), - [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), - [1271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), - [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 3), - [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), - [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), - [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [1283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), - [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), - [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 3), - [1291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), - [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), - [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), - [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 5), - [1299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), - [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [1305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(489), - [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(494), - [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(11), - [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(30), - [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(496), - [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), - [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3), - [1327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), - [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), - [1333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), - [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), - [1339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), - [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), - [1345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), - [1353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), - [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), - [1357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(504), - [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), - [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), - [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), - [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), - [1379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), - [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), - [1385] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), - [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), - [1391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), - [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), - [1397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [1405] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), - [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), - [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), - [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), - [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), - [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541), - [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), - [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), - [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), - [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), - [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), - [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), - [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), - [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), - [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), - [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), - [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), - [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(554), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(557), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(558), - [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), - [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), - [1473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), - [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(544), - [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(545), - [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), - [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), - [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), - [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), - [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), - [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), - [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), - [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), - [1511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), - [1517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), - [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), - [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), - [1525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), - [1533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), - [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), - [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(619), - [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(620), - [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(621), - [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), - [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), - [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(624), - [1549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(625), - [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), - [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), - [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), - [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), - [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), - [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [1571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), - [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645), - [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), - [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), - [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), - [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), - [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), - [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), - [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [1607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), - [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), - [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), - [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), - [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [1627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [1629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(675), - [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), - [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), - [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), - [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), - [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(708), - [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(709), - [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(710), - [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(711), - [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(712), - [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(713), - [1671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(714), - [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), - [1679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), - [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), - [1685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), - [1687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), - [1689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), - [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), - [1693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), - [1695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), - [1697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), - [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), - [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), - [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), - [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), - [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), - [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), - [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), - [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), - [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), - [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), - [1723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), - [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), - [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_linkage_specification, 3), - [1729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), - [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), - [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), - [1735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), - [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), - [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), - [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), - [1743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), - [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), - [1749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), - [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(763), - [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(764), - [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(765), - [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(766), - [1759] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), - [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(768), - [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(769), - [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(770), - [1767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(771), - [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), - [1773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), - [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), - [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(855), - [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(856), - [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(857), - [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), - [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(859), - [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), - [1789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(861), - [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), - [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), - [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), - [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(799), - [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), - [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), - [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), - [1811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), - [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(776), - [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), - [1819] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), - [1821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(778), - [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), - [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), - [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), - [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), - [1835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), - [1837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), - [1839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), - [1841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), - [1843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), - [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), - [1847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1851] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(811), - [1853] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(812), - [1855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(813), - [1857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(814), - [1859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), - [1861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(816), - [1863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(817), - [1865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [1869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [1871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), - [1875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), - [1877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(819), - [1879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), - [1883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), - [1885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), - [1891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), - [1893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [1895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), - [1897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), - [1905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), - [1907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(854), - [1909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), - [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), - [1913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), - [1917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), - [1921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), - [1923] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(864), - [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), - [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), - [1929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), - [1935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), - [1937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), - [1939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), - [1941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [1943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), - [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), - [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), - [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), - [1953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(897), - [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(898), - [1957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(899), - [1959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(900), - [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(901), - [1963] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(902), - [1965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(903), - [1967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [1969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), - [1971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), - [1973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), - [1975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(905), - [1981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [1983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), - [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [1989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [1991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), - [1993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), - [1995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), - [1997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [1999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), - [2001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [2003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), - [2005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [2007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), - [2009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), - [2011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), - [2017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [2019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), - [2021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), - [2023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(955), - [2025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), - [2027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), - [2029] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(957), - [2031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [2033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [2035] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(960), - [2037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(961), - [2039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [2041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), - [2043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [2045] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(964), - [2047] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965), - [2049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [2051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [2053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(991), - [2055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), - [2057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(969), - [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [2061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [2063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [2065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [2067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), - [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), - [2071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), - [2073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [2075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), - [2077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), - [2079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 5), - [2081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), - [2083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [2085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 6), - [2087] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 6), - [2089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 6), - [2091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), - [2095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [2097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), - [2099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(942), - [2101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(943), - [2103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), - [2107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), - [2111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [2113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1022), - [2115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), - [2117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1038), - [2121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [2123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), - [2125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), - [2127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [2131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1029), - [2133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), - [2135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1027), - [2137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [2139] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), - [2141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), - [2143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [2145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [2147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), - [2149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), - [2151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [2153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [2155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), - [2157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), - [2159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), - [2161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1037), - [2163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), - [2165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), - [2167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [2169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), - [2171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), - [2173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1036), - [2175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), - [2177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), - [2179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), - [2181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [2183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), - [2185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), - [2187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 5), - [2189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), - [2191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [2193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), - [2195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), - [2197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), - [2201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), - [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1053), - [2207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1054), - [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1055), - [2211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1056), - [2213] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), - [2215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1058), - [2217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1059), - [2219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), - [2223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [2225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), - [2227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [2229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1061), - [2233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [2235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [2237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [2239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [2241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [2243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [2247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), - [2249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [2251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), - [2253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [2255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [2257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), - [2261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1096), - [2263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [2265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), - [2267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), - [2269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1530), - [2271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), - [2273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), - [2275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), - [2277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), - [2279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), - [2281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1266), - [2283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), - [2285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1267), - [2287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1532), - [2289] = {.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(1525), - [2295] = {.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(1032), - [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), - [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), - [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), - [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), - [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), - [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), - [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), - [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1485), - [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), - [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1486), - [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349), - [2324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1487), - [2326] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_argument_list, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_preproc_params, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), - [2335] = {.count = 14, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1242), - [2350] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), - [2363] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), - [2367] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(8), - [2379] = {.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(1474), - [2385] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), - [2392] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1243), - [2401] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), - [2407] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), - [2416] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), - [2426] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1115), - [2429] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1117), - [2432] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1118), - [2435] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1119), - [2438] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1172), - [2441] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(24), - [2444] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1121), - [2447] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(26), - [2450] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(27), - [2453] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(28), - [2456] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(29), - [2459] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1243), - [2467] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1126), - [2470] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), - [2476] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1128), - [2479] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1244), - [2487] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1244), - [2495] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1135), - [2498] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(947), - [2501] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(948), - [2504] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1258), - [2508] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [2515] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [2522] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [2529] = {.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), - [2542] = {.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), - [2555] = {.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(1260), - [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), - [2571] = {.count = 12, .reusable = false, .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), - [2584] = {.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(1461), - [2598] = {.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), - [2617] = {.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(1263), - [2631] = {.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), - [2650] = {.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), - [2658] = {.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(1264), - [2672] = {.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(1265), - [2686] = {.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(1266), - [2700] = {.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(1266), - [2714] = {.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(1267), - [2728] = {.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(34), - [2742] = {.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(35), - [2756] = {.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(74), - [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), - [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), - [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), - [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), - [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), - [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), - [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1425), - [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), - [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1426), - [2794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1427), - [2796] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2801] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2806] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2810] = {.count = 16, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_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), - [2827] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), - [2840] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [2845] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2853] = {.count = 16, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_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), - [2870] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), - [2877] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), - [2885] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), - [2899] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1411), - [2902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [2904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(211), - [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), - [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1244), - [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), - [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1135), - [2919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1413), - [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1405), - [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), - [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), - [2927] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), SHIFT(13), - [2930] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(74), - [2933] = {.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), - [2944] = {.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), - [2950] = {.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), - [2955] = {.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), - [2967] = {.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), - [2974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), - [2977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2979] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2982] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2985] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2988] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2991] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1115), - [2996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1117), - [2998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1118), - [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1119), - [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1172), - [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1121), - [3006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1258), - [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), - [3010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1173), - [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), - [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), - [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), - [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), - [3020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1242), - [3023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1243), - [3026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [3028] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1244), - [3031] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1244), - [3034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), - [3036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1363), - [3038] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3042] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3047] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(12), - [3050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(753), - [3053] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3058] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3062] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(13), - [3065] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(14), - [3068] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(15), - [3071] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(16), - [3074] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(17), - [3077] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(18), - [3080] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT(997), - [3085] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(206), - [3088] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(1023), - [3092] = {.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(1347), - [3102] = {.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(1031), - [3115] = {.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(1032), - [3127] = {.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(1348), - [3137] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), SHIFT(1349), - [3140] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [3144] = {.count = 8, .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), SHIFT(11), - [3153] = {.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), - [3163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [3166] = {.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(441), - [3172] = {.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(1175), - [3182] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(11), - [3186] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), - [3189] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(32), - [3193] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(32), - [3197] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [3201] = {.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(771), - [3208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3211] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3214] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), - [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), - [3219] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [3222] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [3225] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), - [3228] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(301), - [3232] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(1341), - [3236] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(302), - [3240] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(303), - [3244] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(304), - [3248] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(305), - [3252] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(305), - [3256] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(306), - [3260] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(34), - [3264] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(35), - [3268] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(74), - [3272] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(243), - [3275] = {.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(1328), - [3284] = {.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(271), - [3289] = {.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(1329), - [3296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(10), - [3299] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(244), - [3302] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(475), - [3305] = {.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(1330), - [3310] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(214), - [3313] = {.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), - [3317] = {.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(270), - [3324] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(215), - [3327] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(467), - [3331] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(1327), - [3335] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [3339] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [3343] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [3347] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), - [3350] = {.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), - [3355] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), - [3358] = {.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), - [3363] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_parameter_declaration, 2), - [3366] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), - [3371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), - [3373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), - [3375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), - [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), - [3379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), - [3381] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [3384] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [3387] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), - [3390] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), REDUCE(sym__enum_specifier_contents, 3), - [3393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), - [3395] = {.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(232), - [3399] = {.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), - [3403] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), 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), - [3417] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), 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), - [3431] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), 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), - [3445] = {.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(1116), - [3459] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), 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(541), - [3474] = {.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(951), - [3490] = {.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(952), - [3506] = {.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(1253), - [3529] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1254), - [3548] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1255), - [3566] = {.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), - [3585] = {.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(1133), - [3601] = {.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(954), - [3617] = {.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(1256), - [3633] = {.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(1123), - [3649] = {.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(1257), - [3665] = {.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(1122), - [3681] = {.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(1123), - [3697] = {.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(1127), - [3713] = {.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(1125), - [3729] = {.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(1129), - [3745] = {.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(1130), - [3761] = {.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(1130), - [3777] = {.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(1131), - [3793] = {.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(966), - [3809] = {.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(967), - [3825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(1014), - [3828] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(54), - [3831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [3833] = {.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), - [3839] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), - [3842] = {.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), - [3847] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), - [3850] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(1194), - [3853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), - [3855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1196), - [3857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1197), - [3859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1198), - [3861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1199), - [3863] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1200), - [3865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1201), - [3867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1202), - [3869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), - [3871] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1184), - [3873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), - [3875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1186), - [3877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [3879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), - [3881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), - [3883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [3885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), - [3887] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), - [3890] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(4), - [3893] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(8), - [3896] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(11), - [3899] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(32), - [3902] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(32), - [3905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), - [3907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [3909] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3913] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3917] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [3921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [3923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3926] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3929] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), - [3932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [3934] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3937] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3940] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), - [3943] = {.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), - [3948] = {.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), - [3953] = {.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), - [3959] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), - [3962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), - [3964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [3966] = {.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), - [3972] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [3975] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(238), - [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [3980] = {.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), - [3984] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3987] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3990] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), - [3993] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), - [3996] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), - [3999] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), - [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [4008] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), - [4011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), - [4013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [4015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), - [4017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [4019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), - [4021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), - [4023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [4025] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [4028] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [4031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [4034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), - [4036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), - [4038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [4040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [4042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [4044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [4046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [4048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), - [4050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [4052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [4054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), - [4056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), - [4058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), - [4060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), - [4062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [4064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1240), - [4066] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(1242), - [4070] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), - [4073] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(1243), - [4077] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1243), - [4080] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1244), - [4083] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1244), - [4086] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(949), - [4089] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(952), - [4092] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1133), - [4095] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(954), - [4098] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1123), - [4101] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1122), - [4104] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1123), - [4107] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1127), - [4110] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1125), - [4113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1129), - [4116] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1130), - [4119] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1130), - [4122] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1131), - [4125] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(966), - [4128] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(967), - [4131] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(952), - [4134] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1133), - [4137] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(954), - [4140] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1123), - [4143] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1122), - [4146] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1123), - [4149] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), - [4152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1125), - [4155] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1129), - [4158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1130), - [4161] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1130), - [4164] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1131), - [4167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(966), - [4170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(967), - [4173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(952), - [4176] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1133), - [4179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(954), - [4182] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1123), - [4185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1122), - [4188] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1123), - [4191] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1127), - [4194] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1125), - [4197] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1129), - [4200] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1130), - [4203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1130), - [4206] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1131), - [4209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(966), - [4212] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(967), - [4215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(952), - [4218] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1133), - [4221] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(954), - [4224] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1123), - [4227] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1122), - [4230] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1123), - [4233] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1127), - [4236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1125), - [4239] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1129), - [4242] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1130), - [4245] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1130), - [4248] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1131), - [4251] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(966), - [4254] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(967), - [4257] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(952), - [4260] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1133), - [4263] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(954), - [4266] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1123), - [4269] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1122), - [4272] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1123), - [4275] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1127), - [4278] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1125), - [4281] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1129), - [4284] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1130), - [4287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1130), - [4290] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1131), - [4293] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(966), - [4296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(967), - [4299] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(952), - [4302] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1133), - [4305] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(954), - [4308] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1123), - [4311] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1122), - [4314] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1123), - [4317] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1127), - [4320] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1125), - [4323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1129), - [4326] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1130), - [4329] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1130), - [4332] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1131), - [4335] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(966), - [4338] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(967), - [4341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), - [4343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [4345] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), - [4348] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(4), - [4353] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(8), - [4358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(10), - [4361] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), - [4365] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(11), - [4370] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), - [4373] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(30), - [4376] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(31), - [4379] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(32), - [4384] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(32), - [4389] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(33), - [4392] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(34), - [4395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(35), - [4398] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1173), - [4401] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [4404] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [4407] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1260), - [4411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), - [4413] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), - [4416] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1262), - [4420] = {.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), - [4427] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1263), - [4431] = {.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), - [4438] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1264), - [4442] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1265), - [4446] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1266), - [4450] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1266), - [4454] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1267), - [4458] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(34), - [4462] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(35), - [4466] = {.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(74), - [4474] = {.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), - [4483] = {.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), - [4488] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), - [4492] = {.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), - [4502] = {.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), - [4508] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(1175), - [4511] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(952), - [4514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(56), - [4517] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(54), - [4520] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1133), - [4523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(954), - [4526] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1123), - [4529] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1122), - [4532] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1123), - [4535] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1127), - [4538] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1125), - [4541] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1129), - [4544] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1130), - [4547] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1130), - [4550] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1131), - [4553] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(966), - [4556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(967), - [4559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), - [4561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [4563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), - [4565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), - [4567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1271), - [4569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1272), - [4571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), - [4573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), - [4575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1274), - [4577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), - [4579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), - [4581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1277), - [4583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [4585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), - [4587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [4589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), - [4591] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [4594] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [4597] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), - [4600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), - [4603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1271), - [4606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(58), - [4609] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1272), - [4612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1273), - [4615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1272), - [4618] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1274), - [4621] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1275), - [4624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1276), - [4627] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1277), - [4630] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1277), - [4633] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1278), - [4636] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), - [4639] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(71), - [4642] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(55), - [4645] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1271), - [4648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(58), - [4651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1272), - [4654] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1273), - [4657] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1272), - [4660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1274), - [4663] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1275), - [4666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1276), - [4669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1277), - [4672] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1277), - [4675] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1278), - [4678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(70), - [4681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(71), - [4684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(55), - [4687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1271), - [4690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(58), - [4693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1272), - [4696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1273), - [4699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1272), - [4702] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1274), - [4705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1275), - [4708] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1276), - [4711] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1277), - [4714] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1277), - [4717] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1278), - [4720] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(70), - [4723] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(71), - [4726] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(55), - [4729] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1271), - [4732] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(58), - [4735] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1272), - [4738] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1273), - [4741] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1272), - [4744] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1274), - [4747] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1275), - [4750] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1276), - [4753] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1277), - [4756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1277), - [4759] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1278), - [4762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(70), - [4765] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(71), - [4768] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(55), - [4771] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1271), - [4774] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(58), - [4777] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1272), - [4780] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1273), - [4783] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1272), - [4786] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1274), - [4789] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1275), - [4792] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1276), - [4795] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1277), - [4798] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1277), - [4801] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1278), - [4804] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(70), - [4807] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(71), - [4810] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(55), - [4813] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1271), - [4816] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(58), - [4819] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1272), - [4822] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1273), - [4825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1272), - [4828] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1274), - [4831] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1275), - [4834] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1276), - [4837] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1277), - [4840] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1277), - [4843] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1278), - [4846] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(70), - [4849] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(71), - [4852] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(55), - [4855] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1271), - [4858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(58), - [4861] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1272), - [4864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1273), - [4867] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1272), - [4870] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1274), - [4873] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1275), - [4876] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1276), - [4879] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1277), - [4882] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1277), - [4885] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1278), - [4888] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(70), - [4891] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(71), - [4894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), - [4896] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(55), - [4899] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1271), - [4902] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(58), - [4905] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1272), - [4908] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1273), - [4911] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1272), - [4914] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1274), - [4917] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1275), - [4920] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1276), - [4923] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1277), - [4926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1277), - [4929] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1278), - [4932] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(70), - [4935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(71), - [4938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), - [4940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), - [4942] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4945] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4948] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [4951] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(55), - [4954] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1271), - [4957] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(58), - [4960] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1272), - [4963] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1273), - [4966] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1272), - [4969] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1274), - [4972] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1275), - [4975] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1276), - [4978] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1277), - [4981] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1277), - [4984] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1278), - [4987] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(70), - [4990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(71), - [4993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [4995] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1260), - [4998] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1263), - [5001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1264), - [5003] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1266), - [5006] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1266), - [5009] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(55), - [5012] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1271), - [5015] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(58), - [5018] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1272), - [5021] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1273), - [5024] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1272), - [5027] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1274), - [5030] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1275), - [5033] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1276), - [5036] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1277), - [5039] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1277), - [5042] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1278), - [5045] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(70), - [5048] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(71), - [5051] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(55), - [5054] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1271), - [5057] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(58), - [5060] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1272), - [5063] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1273), - [5066] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1272), - [5069] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1274), - [5072] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1275), - [5075] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1276), - [5078] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1277), - [5081] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1277), - [5084] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1278), - [5087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(70), - [5090] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(71), - [5093] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(55), - [5096] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1271), - [5099] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(58), - [5102] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1272), - [5105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1273), - [5108] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1272), - [5111] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1274), - [5114] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1275), - [5117] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1276), - [5120] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1277), - [5123] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1277), - [5126] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1278), - [5129] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(70), - [5132] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(71), - [5135] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(55), - [5138] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1271), - [5141] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(58), - [5144] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1272), - [5147] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1273), - [5150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1272), - [5153] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1274), - [5156] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1275), - [5159] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1276), - [5162] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1277), - [5165] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1277), - [5168] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1278), - [5171] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(70), - [5174] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(71), - [5177] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(55), - [5180] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1271), - [5183] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(58), - [5186] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1272), - [5189] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1273), - [5192] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1272), - [5195] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1274), - [5198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1275), - [5201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1276), - [5204] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1277), - [5207] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1277), - [5210] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1278), - [5213] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(70), - [5216] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(71), - [5219] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5222] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5225] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [5228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), - [5230] = {.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), - [5237] = {.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), - [5244] = {.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), - [5251] = {.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(1116), - [5259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(1315), - [5262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), - [5265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), - [5267] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), - [5270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), - [5272] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), - [5275] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), - [5278] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [5281] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [5284] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [5287] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [5290] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), - [5293] = {.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), - [5298] = {.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), - [5303] = {.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), - [5308] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(1328), - [5312] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), - [5315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), - [5317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), - [5319] = {.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), - [5324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [5326] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [5329] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), - [5332] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), + [827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(245), + [829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), + [831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), + [833] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(246), + [835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(247), + [837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), + [839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 3), + [841] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(250), + [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), + [845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(253), + [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), + [849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 6), + [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 3), + [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), + [857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declarator, 4), + [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_array_declarator, 2), + [861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(264), + [863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), + [865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), + [867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 2), + [869] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(276), + [873] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), + [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__abstract_declarator, 3), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 3), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_macro_type_specifier, 4), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), + [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 2), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(284), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 2), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 4), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 4), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 5), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 5), + [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 2), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), + [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), + [938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 3), + [940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 3), + [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), + [950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), + [952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), + [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), + [964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(313), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(315), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(314), + [978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(316), + [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), + [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), + [984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(319), + [986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(320), + [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(321), + [990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(322), + [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(323), + [996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(324), + [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), + [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 7), + [1002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 7), + [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), + [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(306), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), + [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), + [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), + [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), + [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), + [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(351), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(351), + [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(352), + [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), + [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), + [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_literal_expression, 4), + [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_literal_expression, 4), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), + [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(396), + [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(395), + [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(365), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(366), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), + [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(369), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(370), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(372), + [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(372), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(373), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(374), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 3), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 3), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), + [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(392), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 5), + [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), + [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(347), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349), + [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), + [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), + [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 3), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), + [1158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), + [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), + [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), + [1166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), + [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_union_specifier, 3), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_union_specifier, 3), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 2), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 2), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 4), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 3), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 3), + [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(438), + [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 2), + [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 2), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), + [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), + [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), + [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), + [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), + [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 6), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 6), + [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 3), + [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 3), + [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), + [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), + [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), + [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), + [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), + [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), + [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(88), + [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), + [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), + [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), + [1262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), + [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), + [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), + [1276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), + [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(474), + [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), + [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), + [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), + [1286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), + [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 3), + [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), + [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), + [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [1298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), + [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), + [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 3), + [1306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 3), + [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), + [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 5), + [1314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 5), + [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [1320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(493), + [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), + [1328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), + [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), + [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(11), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(30), + [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), + [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), + [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_goto_statement, 3), + [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_goto_statement, 3), + [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_continue_statement, 2), + [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_continue_statement, 2), + [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_break_statement, 2), + [1354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_break_statement, 2), + [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 2), + [1360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), + [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_return_statement, 3), + [1368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 3), + [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), + [1372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(508), + [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), + [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), + [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), + [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), + [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [1388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), + [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 10), + [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 10), + [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), + [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), + [1402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [1404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), + [1406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), + [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), + [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [1414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [1420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), + [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), + [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), + [1430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), + [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [1438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), + [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), + [1442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), + [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), + [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), + [1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), + [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), + [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), + [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), + [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), + [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), + [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), + [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(558), + [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), + [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), + [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), + [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(564), + [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(565), + [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), + [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), + [1488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), + [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), + [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), + [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), + [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), + [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), + [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), + [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), + [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), + [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), + [1526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 3), + [1532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 3), + [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 4), + [1540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 4), + [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), + [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_switch_statement, 5), + [1548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_switch_statement, 5), + [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), + [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(624), + [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(625), + [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(626), + [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(627), + [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(628), + [1564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(629), + [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), + [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), + [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), + [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), + [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), + [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), + [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [1586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), + [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), + [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), + [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), + [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), + [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), + [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), + [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645), + [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), + [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), + [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), + [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), + [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), + [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [1622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), + [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), + [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), + [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [1642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [1644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(679), + [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), + [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), + [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), + [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), + [1662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), + [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), + [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), + [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(712), + [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(713), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(714), + [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(715), + [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), + [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), + [1686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(718), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), + [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), + [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), + [1702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), + [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), + [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), + [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), + [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), + [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), + [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), + [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), + [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), + [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), + [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), + [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_linkage_specification, 3), + [1744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_linkage_specification, 3), + [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), + [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), + [1750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), + [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), + [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), + [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), + [1758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), + [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_call, 2), + [1764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_call, 2), + [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), + [1768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(768), + [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(769), + [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(770), + [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(771), + [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(772), + [1778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(773), + [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), + [1782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(775), + [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), + [1788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), + [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 1), + [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(859), + [1794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), + [1796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(861), + [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(862), + [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(863), + [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(864), + [1804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(865), + [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), + [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), + [1810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), + [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), + [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), + [1818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), + [1820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), + [1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), + [1826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), + [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), + [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), + [1834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), + [1836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(782), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), + [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), + [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), + [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), + [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), + [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(816), + [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(818), + [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(819), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(820), + [1878] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(821), + [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(823), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), + [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), + [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), + [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), + [1938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(868), + [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(901), + [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(902), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(903), + [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(904), + [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(905), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(906), + [1980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(907), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), + [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), + [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(909), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(944), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(957), + [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), + [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(959), + [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(961), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(964), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(967), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(969), + [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(995), + [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(973), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 4), + [2086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 4), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(998), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 5), + [2096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 5), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 6), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_if, 6), + [2104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_if, 6), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), + [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1026), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [2134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1042), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 3), + [2140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 3), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1033), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), + [2150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1031), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 4), + [2156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 4), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_function_def, 5), + [2164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_function_def, 5), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), + [2172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1041), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), + [2180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 3), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), + [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 4), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 3), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_def, 5), + [2204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_def, 5), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), + [2210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1058), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1060), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1061), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1062), + [2232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1063), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1065), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1100), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), + [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), + [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1267), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1270), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1271), + [2302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1539), + [2304] = {.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(1532), + [2310] = {.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(1036), + [2317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), + [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [2321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), + [2323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), + [2325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), + [2327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), + [2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), + [2331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1491), + [2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), + [2335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1492), + [2337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), + [2339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1493), + [2341] = {.count = 8, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_argument_list, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_preproc_params, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), + [2350] = {.count = 15, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1246), + [2366] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 2), REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym__abstract_declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), + [2380] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_preproc_params, 3), REDUCE(sym_preproc_params, 4), + [2384] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(8), + [2396] = {.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(1480), + [2402] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), + [2409] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1247), + [2418] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), + [2424] = {.count = 8, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), + [2433] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym__declarator, 3), REDUCE(sym_function_declarator, 3), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_function_declarator, 4), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_macro_type_specifier, 4), + [2443] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1119), + [2446] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1121), + [2449] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1122), + [2452] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1123), + [2455] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1176), + [2458] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(24), + [2461] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1125), + [2464] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(26), + [2467] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(27), + [2470] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(28), + [2473] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(29), + [2476] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1247), + [2484] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1130), + [2487] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), + [2493] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1132), + [2496] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1248), + [2504] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_argument_list, 4), REDUCE(sym_do_statement, 6), SHIFT(1248), + [2512] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(1139), + [2515] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(951), + [2518] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(952), + [2521] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), REDUCE(sym_do_statement, 6), SHIFT(1262), + [2525] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [2532] = {.count = 6, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [2539] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 3), REDUCE(sym_preproc_if, 4), REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [2546] = {.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), + [2559] = {.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), + [2572] = {.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(1264), + [2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), + [2588] = {.count = 12, .reusable = false, .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), + [2601] = {.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(1467), + [2615] = {.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), + [2634] = {.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(1267), + [2648] = {.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), + [2667] = {.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), + [2675] = {.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(1268), + [2689] = {.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(1269), + [2703] = {.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(1270), + [2717] = {.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(1270), + [2731] = {.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(1271), + [2745] = {.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(34), + [2759] = {.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(35), + [2773] = {.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(74), + [2793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), + [2795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), + [2797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), + [2799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), + [2801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), + [2803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), + [2805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1431), + [2807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), + [2809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1432), + [2811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1433), + [2813] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2818] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2823] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2827] = {.count = 16, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_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), + [2844] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), + [2857] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [2862] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2870] = {.count = 16, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_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), + [2887] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 2), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2891] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_compound_statement, 3), + [2894] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_initializer_list, 3), REDUCE(sym_initializer_list, 4), + [2902] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_enum_specifier, 4), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), REDUCE(sym_enum_specifier, 6), + [2916] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1415), + [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), + [2921] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(211), + [2924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), + [2928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), + [2930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1248), + [2932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1139), + [2936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1417), + [2938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1409), + [2940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), + [2942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), + [2944] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_storage_class_specifier, 1), SHIFT(13), + [2947] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_storage_class_specifier, 1), SHIFT(74), + [2950] = {.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), + [2961] = {.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), + [2967] = {.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), + [2972] = {.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), + [2984] = {.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), + [2991] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 3), REDUCE(sym_subscript_expression, 4), + [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2996] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2999] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [3002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3008] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1119), + [3013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1121), + [3015] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), + [3017] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1123), + [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1176), + [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1125), + [3023] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1262), + [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), + [3027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1177), + [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), + [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1391), + [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), + [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), + [3037] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1246), + [3040] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1247), + [3043] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1130), + [3045] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_math_expression, 2), SHIFT(1248), + [3048] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_math_expression, 2), SHIFT(1248), + [3051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), + [3053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1367), + [3055] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3059] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3064] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(12), + [3067] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(757), + [3070] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3075] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3079] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(13), + [3082] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(14), + [3085] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(15), + [3088] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(16), + [3091] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(17), + [3094] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_include, 2), SHIFT(18), + [3097] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), REDUCE(sym_preproc_include, 2), REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT(1001), + [3102] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_include, 2), SHIFT(206), + [3105] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(1027), + [3109] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(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(1351), + [3119] = {.count = 12, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(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(1035), + [3132] = {.count = 11, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(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(1036), + [3144] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(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(1352), + [3154] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), SHIFT(1353), + [3157] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [3161] = {.count = 8, .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), SHIFT(11), + [3170] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(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), + [3180] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [3183] = {.count = 5, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), SHIFT(445), + [3189] = {.count = 9, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(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(1179), + [3199] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(11), + [3203] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), + [3206] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(32), + [3210] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_field_expression, 3), SHIFT(32), + [3214] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [3218] = {.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(775), + [3225] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3228] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3231] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_translation_unit_repeat1, 1), REDUCE(aux_sym_translation_unit_repeat1, 2), + [3234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), + [3236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), + [3239] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), + [3242] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), + [3245] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(305), + [3249] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(1345), + [3253] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(306), + [3257] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(307), + [3261] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(308), + [3265] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(309), + [3269] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(309), + [3273] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(310), + [3277] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(34), + [3281] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(35), + [3285] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), REDUCE(sym_linkage_specification, 3), SHIFT(74), + [3289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(244), + [3292] = {.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(1332), + [3301] = {.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(275), + [3306] = {.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(1333), + [3313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(10), + [3316] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(245), + [3319] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_declarator, 2), SHIFT(479), + [3322] = {.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(1334), + [3327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(214), + [3330] = {.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), + [3334] = {.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(274), + [3341] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 2), SHIFT(215), + [3344] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(471), + [3348] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), SHIFT(1331), + [3352] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [3356] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [3360] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [3364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), + [3367] = {.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), + [3372] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_array_declarator_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 2), + [3375] = {.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), + [3380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_parameter_declaration, 2), + [3383] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), + [3388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), + [3390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), + [3392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), + [3394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), + [3396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), + [3398] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [3401] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [3404] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_specifier_repeat1, 1), REDUCE(aux_sym_struct_specifier_repeat1, 2), + [3407] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__enum_specifier_contents, 1), REDUCE(sym__enum_specifier_contents, 3), + [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), + [3412] = {.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(232), + [3416] = {.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), + [3420] = {.count = 13, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), 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), + [3434] = {.count = 13, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), 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), + [3448] = {.count = 13, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__top_level_item, 1), 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), + [3462] = {.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(1120), + [3476] = {.count = 14, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__top_level_item, 1), 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(545), + [3491] = {.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(955), + [3507] = {.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(956), + [3523] = {.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(1257), + [3546] = {.count = 18, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1258), + [3565] = {.count = 17, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_logical_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 2), REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_sizeof_expression, 2), REDUCE(sym_init_declarator, 3), REDUCE(sym_comma_expression, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), REDUCE_FRAGILE(sym_logical_expression, 3), REDUCE_FRAGILE(sym_bitwise_expression, 3), REDUCE_FRAGILE(sym_equality_expression, 3), REDUCE_FRAGILE(sym_relational_expression, 3), REDUCE_FRAGILE(sym_shift_expression, 3), REDUCE_FRAGILE(sym_math_expression, 3), REDUCE_FRAGILE(sym_cast_expression, 4), REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1259), + [3583] = {.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), + [3602] = {.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(1137), + [3618] = {.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(958), + [3634] = {.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(1260), + [3650] = {.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(1127), + [3666] = {.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(1261), + [3682] = {.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(1126), + [3698] = {.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(1127), + [3714] = {.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(1131), + [3730] = {.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(1129), + [3746] = {.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(1133), + [3762] = {.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(1134), + [3778] = {.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(1134), + [3794] = {.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(1135), + [3810] = {.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(970), + [3826] = {.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(971), + [3842] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(1018), + [3845] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comma_expression, 3), SHIFT(54), + [3848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [3850] = {.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), + [3856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE(sym_compound_literal_expression, 4), + [3859] = {.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), + [3864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__initializer_list_contents_repeat1, 1), REDUCE(aux_sym__initializer_list_contents_repeat1, 2), + [3867] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_else, 2), SHIFT(1198), + [3870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), + [3872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1200), + [3874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1201), + [3876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1202), + [3878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1203), + [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1204), + [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1205), + [3884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), + [3886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), + [3888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), + [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [3892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1190), + [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [3898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [3900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [3902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), + [3904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 3), REDUCE(sym__initializer_list_contents, 5), + [3907] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(4), + [3910] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(8), + [3913] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(11), + [3916] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), SHIFT(32), + [3919] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), SHIFT(32), + [3922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), + [3924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [3926] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3930] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3934] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [3938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), + [3940] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3943] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3946] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 4), REDUCE(sym_struct_declaration, 5), + [3949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [3951] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3954] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3957] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 6), REDUCE(sym_struct_declaration, 7), + [3960] = {.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), + [3965] = {.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), + [3970] = {.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), + [3976] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), + [3979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [3981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), + [3983] = {.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), + [3989] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [3992] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(238), + [3995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), + [3997] = {.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), + [4001] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [4004] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [4007] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 4), REDUCE(sym_declaration, 5), + [4010] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), + [4013] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), + [4016] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), + [4019] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [4022] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [4025] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 3), REDUCE(sym_compound_statement, 3), + [4028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [4030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), + [4032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [4034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [4036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), + [4038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [4040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [4042] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [4045] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [4048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [4051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1210), + [4053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), + [4055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [4057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), + [4059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [4061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [4063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), + [4065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [4067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), + [4069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [4071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [4073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [4075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [4077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [4079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [4081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1244), + [4083] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(1246), + [4087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), + [4090] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), REDUCE(sym_macro_type_specifier, 4), SHIFT(1247), + [4094] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1247), + [4097] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1248), + [4100] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1248), + [4103] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(953), + [4106] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(956), + [4109] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1137), + [4112] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(958), + [4115] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1127), + [4118] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1126), + [4121] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1127), + [4124] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1131), + [4127] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1129), + [4130] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1133), + [4133] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1134), + [4136] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1134), + [4139] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1135), + [4142] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(970), + [4145] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(971), + [4148] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(956), + [4151] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1137), + [4154] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(958), + [4157] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), + [4160] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1126), + [4163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), + [4166] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1131), + [4169] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1129), + [4172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1133), + [4175] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1134), + [4178] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1134), + [4181] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1135), + [4184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(970), + [4187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(971), + [4190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(956), + [4193] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1137), + [4196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(958), + [4199] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1127), + [4202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1126), + [4205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1127), + [4208] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1131), + [4211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1129), + [4214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1133), + [4217] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1134), + [4220] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1134), + [4223] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1135), + [4226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(970), + [4229] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(971), + [4232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(956), + [4235] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1137), + [4238] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(958), + [4241] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1127), + [4244] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1126), + [4247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1127), + [4250] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1131), + [4253] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1129), + [4256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1133), + [4259] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1134), + [4262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1134), + [4265] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1135), + [4268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(970), + [4271] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(971), + [4274] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(956), + [4277] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1137), + [4280] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(958), + [4283] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1127), + [4286] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1126), + [4289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1127), + [4292] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1131), + [4295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1129), + [4298] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1133), + [4301] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1134), + [4304] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1134), + [4307] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1135), + [4310] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(970), + [4313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(971), + [4316] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(956), + [4319] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1137), + [4322] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(958), + [4325] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1127), + [4328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1126), + [4331] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1127), + [4334] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1131), + [4337] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1129), + [4340] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1133), + [4343] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1134), + [4346] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1134), + [4349] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1135), + [4352] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(970), + [4355] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(971), + [4358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256), + [4360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), + [4362] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), + [4365] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(4), + [4370] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(8), + [4375] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(10), + [4378] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), + [4382] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(11), + [4387] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), + [4390] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(30), + [4393] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(31), + [4396] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(32), + [4401] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), REDUCE(sym_parenthesized_expression, 3), REDUCE(sym_do_statement, 6), SHIFT(32), + [4406] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(33), + [4409] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(34), + [4412] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(35), + [4415] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(1177), + [4418] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [4421] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [4424] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1264), + [4428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), + [4430] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), + [4433] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1266), + [4437] = {.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), + [4444] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1267), + [4448] = {.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), + [4455] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1268), + [4459] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1269), + [4463] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1270), + [4467] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1270), + [4471] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(1271), + [4475] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(34), + [4479] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), REDUCE(sym_return_statement, 3), SHIFT(35), + [4483] = {.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(74), + [4491] = {.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), + [4500] = {.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), + [4505] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_array_declarator, 5), REDUCE(sym_array_declarator, 6), + [4509] = {.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), + [4519] = {.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), + [4525] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(1179), + [4528] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(956), + [4531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(56), + [4534] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(54), + [4537] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1137), + [4540] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(958), + [4543] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1127), + [4546] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1126), + [4549] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1127), + [4552] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1131), + [4555] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1129), + [4558] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1133), + [4561] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1134), + [4564] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1134), + [4567] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1135), + [4570] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(970), + [4573] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(971), + [4576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), + [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), + [4580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [4582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [4584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1275), + [4586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1276), + [4588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [4592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), + [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [4596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), + [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1281), + [4600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1282), + [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), + [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [4608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [4611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [4614] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 9), REDUCE(sym_for_statement, 10), + [4617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(55), + [4620] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1275), + [4623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(58), + [4626] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1276), + [4629] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1277), + [4632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1276), + [4635] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1278), + [4638] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1279), + [4641] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1280), + [4644] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1281), + [4647] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1281), + [4650] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1282), + [4653] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(70), + [4656] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(71), + [4659] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(55), + [4662] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1275), + [4665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(58), + [4668] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1276), + [4671] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1277), + [4674] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1276), + [4677] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1278), + [4680] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1279), + [4683] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1280), + [4686] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1281), + [4689] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1281), + [4692] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1282), + [4695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(70), + [4698] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(71), + [4701] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(55), + [4704] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1275), + [4707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(58), + [4710] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1276), + [4713] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1277), + [4716] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1276), + [4719] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1278), + [4722] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1279), + [4725] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1280), + [4728] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1281), + [4731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1281), + [4734] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1282), + [4737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(70), + [4740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(71), + [4743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(55), + [4746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1275), + [4749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(58), + [4752] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1276), + [4755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1277), + [4758] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1276), + [4761] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1278), + [4764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1279), + [4767] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1280), + [4770] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1281), + [4773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1281), + [4776] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1282), + [4779] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(70), + [4782] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(71), + [4785] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(55), + [4788] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1275), + [4791] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(58), + [4794] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1276), + [4797] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1277), + [4800] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1276), + [4803] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1278), + [4806] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1279), + [4809] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1280), + [4812] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1281), + [4815] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1281), + [4818] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1282), + [4821] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(70), + [4824] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(71), + [4827] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(55), + [4830] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1275), + [4833] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(58), + [4836] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1276), + [4839] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1277), + [4842] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1276), + [4845] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1278), + [4848] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1279), + [4851] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1280), + [4854] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1281), + [4857] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1281), + [4860] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1282), + [4863] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(70), + [4866] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(71), + [4869] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(55), + [4872] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1275), + [4875] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(58), + [4878] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1276), + [4881] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1277), + [4884] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1276), + [4887] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1278), + [4890] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1279), + [4893] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1280), + [4896] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1281), + [4899] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1281), + [4902] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1282), + [4905] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(70), + [4908] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(71), + [4911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), + [4913] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(55), + [4916] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1275), + [4919] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(58), + [4922] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1276), + [4925] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1277), + [4928] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1276), + [4931] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1278), + [4934] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1279), + [4937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1280), + [4940] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1281), + [4943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1281), + [4946] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1282), + [4949] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(70), + [4952] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(71), + [4955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [4957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [4959] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4962] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4965] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [4968] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(55), + [4971] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1275), + [4974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(58), + [4977] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1276), + [4980] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1277), + [4983] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1276), + [4986] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1278), + [4989] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1279), + [4992] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1280), + [4995] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1281), + [4998] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1281), + [5001] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1282), + [5004] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(70), + [5007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(71), + [5010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), + [5012] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1264), + [5015] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1267), + [5018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1268), + [5020] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1270), + [5023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1270), + [5026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(55), + [5029] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1275), + [5032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(58), + [5035] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1276), + [5038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1277), + [5041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1276), + [5044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1278), + [5047] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1279), + [5050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1280), + [5053] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1281), + [5056] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1281), + [5059] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1282), + [5062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(70), + [5065] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(71), + [5068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(55), + [5071] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1275), + [5074] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(58), + [5077] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1276), + [5080] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1277), + [5083] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1276), + [5086] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1278), + [5089] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1279), + [5092] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1280), + [5095] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1281), + [5098] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1281), + [5101] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1282), + [5104] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(70), + [5107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(71), + [5110] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(55), + [5113] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1275), + [5116] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(58), + [5119] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1276), + [5122] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1277), + [5125] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1276), + [5128] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1278), + [5131] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1279), + [5134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1280), + [5137] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1281), + [5140] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1281), + [5143] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1282), + [5146] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(70), + [5149] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(71), + [5152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(55), + [5155] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1275), + [5158] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(58), + [5161] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1276), + [5164] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1277), + [5167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1276), + [5170] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1278), + [5173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1279), + [5176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1280), + [5179] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1281), + [5182] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1281), + [5185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1282), + [5188] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(70), + [5191] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(71), + [5194] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(55), + [5197] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1275), + [5200] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(58), + [5203] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1276), + [5206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1277), + [5209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1276), + [5212] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1278), + [5215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1279), + [5218] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1280), + [5221] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1281), + [5224] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1281), + [5227] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1282), + [5230] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(70), + [5233] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(71), + [5236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5239] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5242] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [5245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1316), + [5247] = {.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), + [5254] = {.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), + [5261] = {.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), + [5268] = {.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(1120), + [5276] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(1319), + [5279] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), + [5282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), + [5284] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 3), REDUCE(sym_function_declarator, 4), REDUCE(sym_abstract_function_declarator, 4), + [5288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), + [5290] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), + [5293] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 4), REDUCE(sym_enum_specifier, 5), + [5296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [5299] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [5302] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [5305] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [5308] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__empty_declaration, 2), REDUCE(sym__empty_declaration, 3), + [5311] = {.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), + [5316] = {.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), + [5321] = {.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), + [5326] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), SHIFT(1332), + [5330] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_parameter_declaration, 3), + [5333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), [5335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), - [5337] = {.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), - [5342] = {.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), - [5347] = {.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), - [5352] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [5355] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [5358] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), - [5361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), - [5363] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [5366] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [5369] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), - [5372] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), - [5375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), - [5377] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), SHIFT(467), - [5380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), - [5382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), - [5384] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [5389] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [5394] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), - [5399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1360), - [5401] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3), - [5404] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3), - [5407] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3), - [5410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), - [5412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1351), - [5414] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [5418] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [5421] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [5425] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), - [5428] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(441), - [5431] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(674), - [5434] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), - [5437] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), - [5440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), - [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [5444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [5446] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [5449] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), - [5452] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5455] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5458] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), - [5461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), - [5463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), - [5465] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5468] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5471] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), - [5474] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(1031), - [5477] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(1032), - [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), - [5483] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(4), - [5486] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(11), - [5489] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(74), - [5492] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [5495] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), - [5498] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(952), - [5501] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1133), - [5504] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(954), - [5507] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1123), - [5510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1122), - [5513] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1123), - [5516] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1127), - [5519] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1125), - [5522] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1129), - [5525] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1130), - [5528] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1130), - [5531] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1131), - [5534] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(966), - [5537] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(967), - [5540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), - [5542] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1242), - [5545] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), - [5548] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(952), - [5552] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1133), - [5556] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(954), - [5560] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1123), - [5564] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1122), - [5568] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1123), - [5572] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), - [5576] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1125), - [5580] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1129), - [5584] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1130), - [5588] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1130), - [5592] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1131), - [5596] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(966), - [5600] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(967), - [5604] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(952), - [5607] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1133), - [5610] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(954), - [5613] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1123), - [5616] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1122), - [5619] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1123), - [5622] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1127), - [5625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1125), - [5628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1129), - [5631] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1130), - [5634] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1130), - [5637] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1131), - [5640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(966), - [5643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(967), - [5646] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(952), - [5649] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1133), - [5652] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(954), - [5655] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1123), - [5658] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1122), - [5661] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1123), - [5664] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1127), - [5667] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1125), - [5670] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1129), - [5673] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1130), - [5676] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1130), - [5679] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1131), - [5682] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(966), - [5685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(967), - [5688] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(952), - [5691] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1133), - [5694] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(954), - [5697] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1123), - [5700] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1122), - [5703] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1123), - [5706] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1127), - [5709] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1125), - [5712] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1129), - [5715] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1130), - [5718] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1130), - [5721] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1131), - [5724] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(966), - [5727] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(967), - [5730] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(952), - [5733] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1133), - [5736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(954), - [5739] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1123), - [5742] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1122), - [5745] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1123), - [5748] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1127), - [5751] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1125), - [5754] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1129), - [5757] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1130), - [5760] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1130), - [5763] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1131), - [5766] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(966), - [5769] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(967), - [5772] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(952), - [5775] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1133), - [5778] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(954), - [5781] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1123), - [5784] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1122), - [5787] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1123), - [5790] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1127), - [5793] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1125), - [5796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1129), - [5799] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1130), - [5802] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1130), - [5805] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1131), - [5808] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(966), - [5811] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(967), - [5814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(952), - [5817] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1133), - [5820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(954), - [5823] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1123), - [5826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1122), - [5829] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1123), - [5832] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1127), - [5835] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1125), - [5838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1129), - [5841] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1130), - [5844] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1130), - [5847] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1131), - [5850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(966), - [5853] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(967), - [5856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), - [5859] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(952), - [5863] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1133), - [5867] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(954), - [5871] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1123), - [5875] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1122), - [5879] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1123), - [5883] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1127), - [5887] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1125), - [5891] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1129), - [5895] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1130), - [5899] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1130), - [5903] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1131), - [5907] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(966), - [5911] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(967), - [5915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [5917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), - [5919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), - [5921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [5923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(4), - [5926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(8), - [5929] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(11), - [5932] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(30), - [5935] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(32), - [5938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(32), - [5941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), - [5943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), - [5945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), - [5947] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), SHIFT(1116), - [5950] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [5954] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [5958] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), - [5962] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1399), - [5965] = {.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), - [5971] = {.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), - [5977] = {.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), - [5983] = {.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), - [5989] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), - [5992] = {.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), - [5997] = {.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), - [6001] = {.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), - [6005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), - [6007] = {.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), - [6011] = {.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), - [6015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), - [6017] = {.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), - [6022] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [6025] = {.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), - [6031] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), - [6035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), - [6037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [6039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1417), - [6041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), - [6044] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), - [6047] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), - [6050] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(952), - [6054] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1133), - [6058] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(954), - [6062] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1123), - [6066] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1122), - [6070] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1123), - [6074] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), - [6078] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1125), - [6082] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1129), - [6086] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1130), - [6090] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1130), - [6094] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1131), - [6098] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(966), - [6102] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(967), - [6106] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1415), - [6109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1418), - [6111] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(275), - [6116] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), - [6120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), - [6122] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [6125] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [6128] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [6136] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [6142] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), - [6145] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [6149] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [6157] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [6161] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), - [6168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), - [6170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), SHIFT(56), - [6173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1430), - [6175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1431), - [6177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), - [6179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [6181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1433), - [6183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [6185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), - [6187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1436), - [6189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), - [6191] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1437), - [6193] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1430), - [6196] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1431), - [6199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1432), - [6202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1431), - [6205] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1433), - [6208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1434), - [6211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1435), - [6214] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1436), - [6217] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1436), + [5337] = {.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), + [5342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), + [5344] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [5347] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [5350] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_declaration, 4), + [5353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), + [5355] = {.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), + [5360] = {.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), + [5365] = {.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), + [5370] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [5373] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [5376] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), REDUCE(sym_function_definition, 4), + [5379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), + [5381] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [5384] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [5387] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 5), REDUCE(sym_struct_declaration, 6), + [5390] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 2), + [5393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), + [5395] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 3), SHIFT(471), + [5398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), + [5400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), + [5402] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [5407] = {.count = 4, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [5412] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_preproc_ifdef, 4), REDUCE(sym_preproc_if, 5), REDUCE(sym_preproc_ifdef, 5), REDUCE(sym_preproc_if, 6), + [5417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1364), + [5419] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3), + [5422] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3), + [5425] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), REDUCE(sym_goto_statement, 3), + [5428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), + [5430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1355), + [5432] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [5436] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [5439] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [5443] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_enumerator, 1), REDUCE_FRAGILE(sym__expression, 1), + [5446] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(445), + [5449] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), SHIFT(678), + [5452] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), + [5455] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_array_declarator_repeat1, 1), + [5458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), + [5460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), + [5462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), + [5464] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [5467] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_specifier, 5), REDUCE(sym_union_specifier, 5), + [5470] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5473] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5476] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_struct_declaration, 2), REDUCE(sym__empty_declaration, 2), + [5479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), + [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [5483] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5486] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5489] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration, 3), REDUCE(sym_struct_declaration, 3), + [5492] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__expression, 1), SHIFT(1035), + [5495] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(1036), + [5499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), + [5501] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(4), + [5504] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(11), + [5507] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_macro_type_specifier, 4), SHIFT(74), + [5510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [5513] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 2), REDUCE(sym_field_expression, 3), + [5516] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(956), + [5519] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1137), + [5522] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(958), + [5525] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1127), + [5528] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1126), + [5531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1127), + [5534] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1131), + [5537] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1129), + [5540] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1133), + [5543] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1134), + [5546] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1134), + [5549] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1135), + [5552] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(970), + [5555] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(971), + [5558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [5560] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1246), + [5563] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), + [5566] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(956), + [5570] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1137), + [5574] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(958), + [5578] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), + [5582] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1126), + [5586] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), + [5590] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1131), + [5594] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1129), + [5598] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1133), + [5602] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1134), + [5606] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1134), + [5610] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1135), + [5614] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(970), + [5618] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(971), + [5622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(956), + [5625] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1137), + [5628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(958), + [5631] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1127), + [5634] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1126), + [5637] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1127), + [5640] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1131), + [5643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1129), + [5646] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1133), + [5649] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1134), + [5652] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1134), + [5655] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1135), + [5658] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(970), + [5661] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(971), + [5664] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(956), + [5667] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1137), + [5670] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(958), + [5673] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1127), + [5676] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1126), + [5679] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1127), + [5682] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1131), + [5685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1129), + [5688] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1133), + [5691] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1134), + [5694] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1134), + [5697] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1135), + [5700] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(970), + [5703] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(971), + [5706] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(956), + [5709] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1137), + [5712] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(958), + [5715] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1127), + [5718] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1126), + [5721] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1127), + [5724] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1131), + [5727] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1129), + [5730] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1133), + [5733] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1134), + [5736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1134), + [5739] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1135), + [5742] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(970), + [5745] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(971), + [5748] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(956), + [5751] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1137), + [5754] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(958), + [5757] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1127), + [5760] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1126), + [5763] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1127), + [5766] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1131), + [5769] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1129), + [5772] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1133), + [5775] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1134), + [5778] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1134), + [5781] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1135), + [5784] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(970), + [5787] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(971), + [5790] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(956), + [5793] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1137), + [5796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(958), + [5799] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1127), + [5802] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1126), + [5805] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1127), + [5808] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1131), + [5811] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1129), + [5814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1133), + [5817] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1134), + [5820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1134), + [5823] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1135), + [5826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(970), + [5829] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(971), + [5832] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(956), + [5835] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1137), + [5838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(958), + [5841] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1127), + [5844] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1126), + [5847] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1127), + [5850] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1131), + [5853] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1129), + [5856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1133), + [5859] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1134), + [5862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1134), + [5865] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1135), + [5868] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(970), + [5871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(971), + [5874] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), + [5877] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(956), + [5881] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1137), + [5885] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(958), + [5889] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1127), + [5893] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1126), + [5897] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1127), + [5901] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1131), + [5905] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1129), + [5909] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1133), + [5913] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1134), + [5917] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1134), + [5921] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1135), + [5925] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(970), + [5929] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(971), + [5933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), + [5935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1345), + [5937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), + [5939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), + [5941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(4), + [5944] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(8), + [5947] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(11), + [5950] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(30), + [5953] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_statement, 6), SHIFT(32), + [5956] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_statement, 6), SHIFT(32), + [5959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), + [5961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), + [5963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), + [5965] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), SHIFT(1120), + [5968] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [5972] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [5976] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_labeled_statement, 3), REDUCE(sym_case_statement, 3), REDUCE(sym_case_statement, 4), + [5980] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1403), + [5983] = {.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), + [5989] = {.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), + [5995] = {.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), + [6001] = {.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), + [6007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_init_declarator, 3), REDUCE_FRAGILE(sym_assignment_expression, 3), + [6010] = {.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), + [6015] = {.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), + [6019] = {.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), + [6023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), + [6025] = {.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), + [6029] = {.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), + [6033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), + [6035] = {.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), + [6040] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [6043] = {.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), + [6049] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_designator, 3), REDUCE(sym_array_declarator, 4), REDUCE(sym_subscript_expression, 4), + [6053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), + [6055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), + [6057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1421), + [6059] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), + [6062] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), + [6065] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), + [6068] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(956), + [6072] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1137), + [6076] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(958), + [6080] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), + [6084] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1126), + [6088] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1127), + [6092] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1131), + [6096] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1129), + [6100] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1133), + [6104] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1134), + [6108] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1134), + [6112] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1135), + [6116] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(970), + [6120] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(971), + [6124] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1419), + [6127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1424), + [6129] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(276), + [6134] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), + [6138] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), + [6141] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), + [6144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), + [6146] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [6149] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [6152] = {.count = 7, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [6160] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [6166] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), + [6169] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [6173] = {.count = 7, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [6181] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [6185] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_list, 2), REDUCE(sym_compound_statement, 2), REDUCE(sym_struct_specifier, 3), REDUCE(sym_union_specifier, 3), REDUCE(sym_struct_specifier, 4), REDUCE(sym_union_specifier, 4), + [6192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), + [6194] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__initializer_list_contents, 1), SHIFT(56), + [6197] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1436), + [6199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1437), + [6201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [6203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), + [6205] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1439), + [6207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), + [6209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), + [6211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1442), + [6213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [6215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1443), + [6217] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1436), [6220] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1437), - [6223] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1430), - [6226] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1431), - [6229] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1432), - [6232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1431), - [6235] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1433), - [6238] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1434), - [6241] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1435), - [6244] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1436), - [6247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1436), + [6223] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1438), + [6226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1437), + [6229] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1439), + [6232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1440), + [6235] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1441), + [6238] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1442), + [6241] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1442), + [6244] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1443), + [6247] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1436), [6250] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1437), - [6253] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1430), - [6256] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1431), - [6259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1432), - [6262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1431), - [6265] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1433), - [6268] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1434), - [6271] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1435), - [6274] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1436), - [6277] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1436), + [6253] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1438), + [6256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1437), + [6259] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1439), + [6262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1440), + [6265] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1441), + [6268] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1442), + [6271] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1442), + [6274] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1443), + [6277] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1436), [6280] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1437), - [6283] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1430), - [6286] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1431), - [6289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1432), - [6292] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1431), - [6295] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1433), - [6298] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1434), - [6301] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1435), - [6304] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1436), - [6307] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1436), + [6283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1438), + [6286] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1437), + [6289] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1439), + [6292] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1440), + [6295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1441), + [6298] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1442), + [6301] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1442), + [6304] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1443), + [6307] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1436), [6310] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1437), - [6313] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1430), - [6316] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1431), - [6319] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1432), - [6322] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1431), - [6325] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1433), - [6328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1434), - [6331] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1435), - [6334] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1436), - [6337] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1436), + [6313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1438), + [6316] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1437), + [6319] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1439), + [6322] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1440), + [6325] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1441), + [6328] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1442), + [6331] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1442), + [6334] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1443), + [6337] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1436), [6340] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1437), - [6343] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1430), - [6346] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1431), - [6349] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1432), - [6352] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1431), - [6355] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1433), - [6358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1434), - [6361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1435), - [6364] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1436), - [6367] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1436), + [6343] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1438), + [6346] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1437), + [6349] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1439), + [6352] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1440), + [6355] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1441), + [6358] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1442), + [6361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1442), + [6364] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1443), + [6367] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1436), [6370] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1437), - [6373] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1430), - [6376] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1431), - [6379] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1432), - [6382] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1431), - [6385] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1433), - [6388] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1434), - [6391] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1435), - [6394] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1436), - [6397] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1436), + [6373] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1438), + [6376] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1437), + [6379] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1439), + [6382] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1440), + [6385] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1441), + [6388] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1442), + [6391] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1442), + [6394] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1443), + [6397] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1436), [6400] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1437), - [6403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), - [6405] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1430), - [6408] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1431), - [6411] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1432), - [6414] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1431), - [6417] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1433), - [6420] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1434), - [6423] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1435), - [6426] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1436), - [6429] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1436), + [6403] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1438), + [6406] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1437), + [6409] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1439), + [6412] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1440), + [6415] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1441), + [6418] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1442), + [6421] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1442), + [6424] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1443), + [6427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [6429] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1436), [6432] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1437), - [6435] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1430), - [6438] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1431), - [6441] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1432), - [6444] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1431), - [6447] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1433), - [6450] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1434), - [6453] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1435), - [6456] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1436), - [6459] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1436), + [6435] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1438), + [6438] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1437), + [6441] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1439), + [6444] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1440), + [6447] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1441), + [6450] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1442), + [6453] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1442), + [6456] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1443), + [6459] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1436), [6462] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1437), - [6465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451), - [6467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1419), - [6470] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1422), - [6473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1423), - [6475] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1425), - [6478] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1425), - [6481] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1430), - [6484] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1431), - [6487] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1432), - [6490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1431), - [6493] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1433), - [6496] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1434), - [6499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1435), - [6502] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1436), - [6505] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1436), + [6465] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1438), + [6468] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1437), + [6471] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1439), + [6474] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1440), + [6477] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1441), + [6480] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1442), + [6483] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1442), + [6486] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1443), + [6489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), + [6491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1425), + [6494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1428), + [6497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1429), + [6499] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1431), + [6502] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1431), + [6505] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1436), [6508] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1437), - [6511] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1430), - [6514] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1431), - [6517] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1432), - [6520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1431), - [6523] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1433), - [6526] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1434), - [6529] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1435), - [6532] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1436), - [6535] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1436), + [6511] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1438), + [6514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1437), + [6517] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1439), + [6520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1440), + [6523] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1441), + [6526] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1442), + [6529] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1442), + [6532] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1443), + [6535] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1436), [6538] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1437), - [6541] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1430), - [6544] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1431), - [6547] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1432), - [6550] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1431), - [6553] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1433), - [6556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1434), - [6559] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1435), - [6562] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1436), - [6565] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1436), + [6541] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1438), + [6544] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1437), + [6547] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1439), + [6550] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1440), + [6553] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1441), + [6556] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1442), + [6559] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1442), + [6562] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1443), + [6565] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1436), [6568] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1437), - [6571] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1430), - [6574] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1431), - [6577] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1432), - [6580] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1431), - [6583] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1433), - [6586] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1434), - [6589] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1435), - [6592] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1436), - [6595] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1436), + [6571] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1438), + [6574] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1437), + [6577] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1439), + [6580] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1440), + [6583] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1441), + [6586] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1442), + [6589] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1442), + [6592] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1443), + [6595] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1436), [6598] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1437), - [6601] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1430), - [6604] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1431), - [6607] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1432), - [6610] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1431), - [6613] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1433), - [6616] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1434), - [6619] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1435), - [6622] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1436), - [6625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1436), + [6601] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1438), + [6604] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1437), + [6607] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1439), + [6610] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1440), + [6613] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1441), + [6616] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1442), + [6619] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1442), + [6622] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1443), + [6625] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1436), [6628] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1437), - [6631] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [6634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [6636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469), - [6638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [6640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), - [6642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), - [6644] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [6648] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [6652] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), - [6656] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [6659] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [6662] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), - [6665] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [6669] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [6673] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), - [6677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), - [6679] = {.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), - [6688] = {.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), - [6697] = {.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), - [6706] = {.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(1116), - [6716] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(56), - [6719] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(54), - [6722] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), - [6725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [6727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), - [6729] = {.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), - [6734] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [6738] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), - [6742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1522), - [6744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), - [6746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), - [6748] = {.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), - [6755] = {.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), - [6760] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(441), - [6764] = {.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), - [6769] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), - [6772] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), - [6775] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), - [6778] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), SHIFT(1315), - [6783] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), - [6787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1492), - [6789] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1493), - [6791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1494), - [6793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), - [6795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1495), - [6797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), - [6799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), - [6801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1498), - [6803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1498), - [6805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1499), - [6807] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1492), - [6810] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1493), - [6813] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1494), - [6816] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1493), - [6819] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1495), - [6822] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1496), - [6825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1497), - [6828] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1498), - [6831] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1498), - [6834] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1499), - [6837] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1492), - [6840] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1493), - [6843] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1494), - [6846] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1493), - [6849] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1495), - [6852] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1496), - [6855] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1497), - [6858] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1498), - [6861] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1498), - [6864] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1499), - [6867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), - [6869] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1492), - [6872] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1493), - [6875] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1494), - [6878] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1493), - [6881] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1495), - [6884] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1496), - [6887] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1497), - [6890] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1498), - [6893] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1498), - [6896] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1499), - [6899] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1492), - [6902] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1493), - [6905] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1494), - [6908] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1493), - [6911] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1495), - [6914] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1496), - [6917] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1497), - [6920] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1498), - [6923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1498), - [6926] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1499), - [6929] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1492), - [6932] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1493), - [6935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1494), - [6938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1493), - [6941] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1495), - [6944] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1496), - [6947] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1497), - [6950] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1498), - [6953] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1498), - [6956] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1499), - [6959] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1492), - [6962] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1493), - [6965] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1494), - [6968] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1493), - [6971] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1495), - [6974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1496), - [6977] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1497), - [6980] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1498), - [6983] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1498), - [6986] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1499), - [6989] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1492), - [6992] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1493), - [6995] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1494), - [6998] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1493), - [7001] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1495), - [7004] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1496), - [7007] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1497), - [7010] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1498), - [7013] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1498), - [7016] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1499), - [7019] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1492), - [7022] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1493), - [7025] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1494), - [7028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1493), - [7031] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1495), - [7034] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1496), - [7037] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1497), - [7040] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1498), - [7043] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1498), - [7046] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1499), - [7049] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1492), - [7052] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1493), - [7055] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1494), - [7058] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1493), - [7061] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1495), - [7064] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1496), - [7067] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1497), - [7070] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1498), - [7073] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1498), - [7076] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1499), - [7079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), - [7081] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1492), - [7084] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1493), - [7087] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1494), - [7090] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1493), - [7093] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1495), - [7096] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1496), - [7099] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1497), - [7102] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1498), - [7105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1498), - [7108] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1499), - [7111] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1492), - [7114] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1493), - [7117] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1494), - [7120] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1493), - [7123] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1495), - [7126] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1496), - [7129] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1497), - [7132] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1498), - [7135] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1498), - [7138] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1499), - [7141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), - [7143] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1500), - [7146] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1482), - [7149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1483), - [7151] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1485), - [7154] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1485), - [7157] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1492), - [7160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1493), - [7163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1494), - [7166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1493), - [7169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1495), - [7172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1496), - [7175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1497), - [7178] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1498), - [7181] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1498), - [7184] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1499), - [7187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1492), - [7190] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1493), - [7193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1494), - [7196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1493), - [7199] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1495), - [7202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1496), - [7205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1497), - [7208] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1498), - [7211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1498), - [7214] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1499), - [7217] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1492), - [7220] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1493), - [7223] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1494), - [7226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1493), - [7229] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1495), - [7232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1496), - [7235] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1497), - [7238] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1498), - [7241] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1498), - [7244] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1499), - [7247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), - [7249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1527), - [7251] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), - [7254] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), - [7257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), - [7259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), SHIFT(1032), - [7262] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_argument_list, 2), - [7265] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), - [7269] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_function_declarator, 3), - [7272] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_function_declarator, 3), - [7275] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1528), - [7278] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(1031), - [7282] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(1032), - [7287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 1), REDUCE(sym_type_name, 1), - [7290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), - [7292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), - [7294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), - [7296] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [7300] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [7304] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), - [7308] = {.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(1116), - [7313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(397), - [7316] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(467), - [7319] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), REDUCE(sym_type_name, 2), + [6631] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1438), + [6634] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1437), + [6637] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1439), + [6640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1440), + [6643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1441), + [6646] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1442), + [6649] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1442), + [6652] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1443), + [6655] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [6658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), + [6660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), + [6662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469), + [6664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), + [6666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), + [6668] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [6672] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [6676] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), REDUCE(sym_for_statement, 9), + [6680] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [6683] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [6686] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), + [6689] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [6693] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [6697] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), REDUCE(sym_for_statement, 7), REDUCE(sym_for_statement, 8), + [6701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [6703] = {.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), + [6712] = {.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), + [6721] = {.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), + [6730] = {.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(1120), + [6740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(56), + [6743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(54), + [6746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), REDUCE(sym_initializer_list, 2), + [6749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), + [6751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1530), + [6753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1531), + [6755] = {.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), + [6760] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [6764] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_initializer_list, 4), REDUCE(sym_enum_specifier, 5), REDUCE(sym_enum_specifier, 6), + [6768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1528), + [6770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), + [6772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), + [6774] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(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), + [6781] = {.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), + [6786] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(445), + [6790] = {.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), + [6795] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_struct_declaration_repeat1, 2), REDUCE(aux_sym_struct_declaration_repeat1, 3), + [6798] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_repeat1, 2), REDUCE(aux_sym_declaration_repeat1, 3), + [6801] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 3), + [6804] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym__initializer_list_contents, 3), REDUCE(aux_sym_for_statement_repeat1, 3), SHIFT(1319), + [6809] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), REDUCE(sym_comma_expression, 3), REDUCE(aux_sym_for_statement_repeat1, 3), + [6813] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1498), + [6815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1499), + [6817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [6819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), + [6821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1501), + [6823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), + [6825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [6827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1504), + [6829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), + [6831] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1505), + [6833] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1498), + [6836] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1499), + [6839] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1500), + [6842] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1499), + [6845] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1501), + [6848] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1502), + [6851] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1503), + [6854] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1504), + [6857] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1504), + [6860] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 3), SHIFT(1505), + [6863] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1498), + [6866] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1499), + [6869] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1500), + [6872] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1499), + [6875] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1501), + [6878] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1502), + [6881] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1503), + [6884] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1504), + [6887] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1504), + [6890] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_pointer_expression, 2), SHIFT(1505), + [6893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1510), + [6895] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1498), + [6898] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1499), + [6901] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1500), + [6904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1499), + [6907] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1501), + [6910] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1502), + [6913] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1503), + [6916] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1504), + [6919] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1504), + [6922] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_cast_expression, 4), SHIFT(1505), + [6925] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1498), + [6928] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1499), + [6931] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1500), + [6934] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1499), + [6937] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1501), + [6940] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1502), + [6943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1503), + [6946] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1504), + [6949] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1504), + [6952] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_shift_expression, 3), SHIFT(1505), + [6955] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1498), + [6958] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1499), + [6961] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1500), + [6964] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1499), + [6967] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1501), + [6970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1502), + [6973] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1503), + [6976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1504), + [6979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1504), + [6982] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_relational_expression, 3), SHIFT(1505), + [6985] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1498), + [6988] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1499), + [6991] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1500), + [6994] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1499), + [6997] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1501), + [7000] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1502), + [7003] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1503), + [7006] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1504), + [7009] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1504), + [7012] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_equality_expression, 3), SHIFT(1505), + [7015] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1498), + [7018] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1499), + [7021] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1500), + [7024] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1499), + [7027] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1501), + [7030] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1502), + [7033] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1503), + [7036] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1504), + [7039] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1504), + [7042] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 3), SHIFT(1505), + [7045] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1498), + [7048] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1499), + [7051] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1500), + [7054] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1499), + [7057] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1501), + [7060] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1502), + [7063] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1503), + [7066] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1504), + [7069] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1504), + [7072] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 3), SHIFT(1505), + [7075] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1498), + [7078] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1499), + [7081] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1500), + [7084] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1499), + [7087] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1501), + [7090] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1502), + [7093] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1503), + [7096] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1504), + [7099] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1504), + [7102] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_assignment_expression, 3), SHIFT(1505), + [7105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), + [7107] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1498), + [7110] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1499), + [7113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1500), + [7116] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1499), + [7119] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1501), + [7122] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1502), + [7125] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1503), + [7128] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1504), + [7131] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1504), + [7134] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_conditional_expression, 5), SHIFT(1505), + [7137] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1498), + [7140] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1499), + [7143] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1500), + [7146] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1499), + [7149] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1501), + [7152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1502), + [7155] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1503), + [7158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1504), + [7161] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1504), + [7164] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 2), SHIFT(1505), + [7167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), + [7169] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1506), + [7172] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1488), + [7175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1489), + [7177] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1491), + [7180] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_sizeof_expression, 4), SHIFT(1491), + [7183] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1498), + [7186] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1499), + [7189] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1500), + [7192] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1499), + [7195] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1501), + [7198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1502), + [7201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1503), + [7204] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1504), + [7207] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1504), + [7210] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_math_expression, 2), SHIFT(1505), + [7213] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1498), + [7216] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1499), + [7219] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1500), + [7222] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1499), + [7225] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1501), + [7228] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1502), + [7231] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1503), + [7234] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1504), + [7237] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1504), + [7240] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_bitwise_expression, 2), SHIFT(1505), + [7243] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1498), + [7246] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1499), + [7249] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1500), + [7252] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1499), + [7255] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1501), + [7258] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1502), + [7261] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1503), + [7264] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1504), + [7267] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1504), + [7270] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_logical_expression, 2), SHIFT(1505), + [7273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), + [7275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1534), + [7277] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_preproc_params_repeat1, 2), REDUCE(aux_sym_parameter_type_list_repeat1, 2), + [7280] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE(aux_sym_preproc_params_repeat1, 2), + [7283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), + [7285] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_type_list, 1), SHIFT(1036), + [7288] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_preproc_params, 2), REDUCE(sym_argument_list, 2), + [7291] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_abstract_function_declarator, 2), REDUCE(sym_argument_list, 2), REDUCE(sym_function_declarator, 3), REDUCE(sym_abstract_function_declarator, 3), + [7296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), REDUCE(sym_function_declarator, 3), + [7299] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), REDUCE(sym_function_declarator, 3), + [7302] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_abstract_pointer_declarator, 1), SHIFT(1535), + [7305] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(1035), + [7309] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym__declarator, 1), REDUCE_FRAGILE(sym__type_specifier, 1), REDUCE_FRAGILE(sym__expression, 1), SHIFT(1036), + [7314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), + [7316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [7318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), + [7320] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [7324] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [7328] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE_FRAGILE(sym_if_statement, 5), REDUCE(sym_switch_statement, 5), REDUCE(sym_while_statement, 5), + [7332] = {.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(1120), + [7337] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT(401), + [7340] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_declaration, 2), SHIFT(471), }; const TSLanguage *tree_sitter_c() {